Skip to content

Commit abb3625

Browse files
committed
Fixed unit test after change to defaults
1 parent 0b289e5 commit abb3625

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Tests/UnitTests/Group01DataLayer/Test04BuildConnection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public void Test05SetUnathenticatedUserNonAzureOk()
8080

8181
//VERIFY
8282
var sc = new SqlConnectionStringBuilder(con);
83-
sc.UserID.ShouldEqual("Homer");
83+
sc.UserID.ShouldEqual("jonsmith_Homer");
8484
sc.IntegratedSecurity.ShouldEqual(false);
8585
}
8686

@@ -95,7 +95,7 @@ public void Test06SetAdaUserNonAzureOk()
9595

9696
//VERIFY
9797
var sc = new SqlConnectionStringBuilder(con);
98-
sc.UserID.ShouldEqual("Ada1");
98+
sc.UserID.ShouldEqual("jonsmith_Ada1");
9999
sc.IntegratedSecurity.ShouldEqual(false);
100100
}
101101

@@ -110,7 +110,7 @@ public void Test10SetUnathenticatedUserAzureOk()
110110

111111
//VERIFY
112112
var sc = new SqlConnectionStringBuilder(con);
113-
sc.UserID.ShouldEqual("Homer@AzureServerName");
113+
sc.UserID.ShouldEqual("jonsmith_Homer@AzureServerName");
114114
sc.IntegratedSecurity.ShouldEqual(false);
115115
}
116116
}

0 commit comments

Comments
 (0)