Skip to content

Commit 41e85c4

Browse files
committed
No failed test because of encryption
Encryption doesn't affect tested functionality
1 parent 71de51d commit 41e85c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Orm/Xtensive.Orm.Tests/Issues/IssueJira0451_ConnectionInitializationSql.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2013-2021 Xtensive LLC.
1+
// Copyright (C) 2013-2021 Xtensive LLC.
22
// This code is distributed under MIT license terms.
33
// See the License.txt file in the project root for more information.
44
// Created by: Denis Krjuchkov
@@ -74,7 +74,8 @@ private static DomainConfiguration BuildConfiguration(string database, DomainUpg
7474
private static ConnectionInfo OverrideDatabase(ConnectionInfo connectionInfo, string database)
7575
{
7676
var builder = new SqlConnectionStringBuilder(connectionInfo.ConnectionString) {
77-
InitialCatalog = database
77+
InitialCatalog = database,
78+
Encrypt = false
7879
};
7980
return new ConnectionInfo(WellKnown.Provider.SqlServer, builder.ToString());
8081
}

0 commit comments

Comments
 (0)