File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Snowflake.Data.Tests/UnitTests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public void TestSessionRenew()
34
34
public void TestSessionRenewGetResultWithId ( )
35
35
{
36
36
Mock . MockRestSessionExpired restRequester = new Mock . MockRestSessionExpired ( ) ;
37
- SFSession sfSession = new SFSession ( "account=test;user=test;password=test" , null , restRequester ) ;
37
+ SFSession sfSession = new SFSession ( "account=test;user=test;password=test" , new SessionPropertiesContext ( ) , restRequester ) ;
38
38
sfSession . Open ( ) ;
39
39
SFStatement statement = new SFStatement ( sfSession ) ;
40
40
SFBaseResultSet resultSet = statement . GetResultWithId ( "mockId" ) ;
@@ -48,7 +48,7 @@ public void TestSessionRenewGetResultWithId()
48
48
public async Task TestSessionRenewGetResultWithIdAsync ( )
49
49
{
50
50
Mock . MockRestSessionExpired restRequester = new Mock . MockRestSessionExpired ( ) ;
51
- SFSession sfSession = new SFSession ( "account=test;user=test;password=test" , null , restRequester ) ;
51
+ SFSession sfSession = new SFSession ( "account=test;user=test;password=test" , new SessionPropertiesContext ( ) , restRequester ) ;
52
52
sfSession . Open ( ) ;
53
53
SFStatement statement = new SFStatement ( sfSession ) ;
54
54
SFBaseResultSet resultSet = await statement . GetResultWithIdAsync ( "mockId" , CancellationToken . None ) ;
You can’t perform that action at this time.
0 commit comments