Skip to content

Commit 9f7575a

Browse files
Fix compile errors in new end to end tests (introduced after merging).
1 parent b8b6184 commit 9f7575a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Assets/SequenceSDK/WaaS/Tests/WaaSSessionManagementTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public async Task TestGetSessionAuthProof()
120120
{
121121
tcs.TrySetException(e);
122122
}
123-
}, (error, method, email) =>
123+
}, (error, method, email, methods) =>
124124
{
125125
tcs.TrySetException(new Exception(error));
126126
});

Assets/SequenceSDK/WaaS/Tests/WalletAdapterToEOAInteractionTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public async Task TestGetAddress()
3434
{
3535
tcs.TrySetException(e);
3636
}
37-
}, (error, method, email) =>
37+
}, (error, method, email, methods) =>
3838
{
3939
tcs.TrySetException(new Exception(error));
4040
});
@@ -67,7 +67,7 @@ await testHarness.Login(async wallet =>
6767
{
6868
tcs.TrySetException(e);
6969
}
70-
}, (error, method, email) =>
70+
}, (error, method, email, methods) =>
7171
{
7272
tcs.TrySetException(new Exception(error));
7373
});
@@ -119,7 +119,7 @@ await indexer.GetTokenBalances(
119119
{
120120
tcs.TrySetException(e);
121121
}
122-
}, (error, method, email) =>
122+
}, (error, method, email, methods) =>
123123
{
124124
tcs.TrySetException(new Exception(error));
125125
});
@@ -177,7 +177,7 @@ await indexer.GetTokenBalances(
177177
{
178178
tcs.TrySetException(e);
179179
}
180-
}, (error, method, email) =>
180+
}, (error, method, email, methods) =>
181181
{
182182
tcs.TrySetException(new Exception(error));
183183
});

Assets/SequenceSDK/WaaS/Tests/WalletInteractionsTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ await indexer.GetTokenBalances(
159159
{
160160
tcs.TrySetException(e);
161161
}
162-
}, (error, method, email) =>
162+
}, (error, method, email, methods) =>
163163
{
164164
tcs.TrySetException(new Exception(error));
165165
});
@@ -219,7 +219,7 @@ await indexer.GetTokenBalances(
219219
{
220220
tcs.TrySetException(e);
221221
}
222-
}, (error, method, email) =>
222+
}, (error, method, email, methods) =>
223223
{
224224
tcs.TrySetException(new Exception(error));
225225
});
@@ -271,7 +271,7 @@ await indexer.GetTokenBalances(
271271
{
272272
tcs.TrySetException(e);
273273
}
274-
}, (error, method, email) =>
274+
}, (error, method, email, methods) =>
275275
{
276276
tcs.TrySetException(new Exception(error));
277277
});
@@ -321,7 +321,7 @@ await indexer.GetTokenBalances(
321321
{
322322
tcs.TrySetException(e);
323323
}
324-
}, (error, method, email) =>
324+
}, (error, method, email, methods) =>
325325
{
326326
tcs.TrySetException(new Exception(error));
327327
});
@@ -357,7 +357,7 @@ public async Task TestGetFeeOptions()
357357
{
358358
tcs.TrySetException(e);
359359
}
360-
}, (error, method, email) =>
360+
}, (error, method, email, methods) =>
361361
{
362362
tcs.TrySetException(new Exception(error));
363363
});
@@ -414,7 +414,7 @@ public async Task TestFeeOptionsAndSend()
414414
{
415415
tcs.TrySetException(e);
416416
}
417-
}, (error, method, email) =>
417+
}, (error, method, email, methods) =>
418418
{
419419
tcs.TrySetException(new Exception(error));
420420
});

0 commit comments

Comments
 (0)