Skip to content

Commit

Permalink
Fix compile errors in new end to end tests (introduced after merging).
Browse files Browse the repository at this point in the history
  • Loading branch information
BellringerQuinn committed Aug 2, 2024
1 parent b8b6184 commit 9f7575a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public async Task TestGetSessionAuthProof()
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public async Task TestGetAddress()
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -67,7 +67,7 @@ await testHarness.Login(async wallet =>
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -119,7 +119,7 @@ await indexer.GetTokenBalances(
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -177,7 +177,7 @@ await indexer.GetTokenBalances(
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down
12 changes: 6 additions & 6 deletions Assets/SequenceSDK/WaaS/Tests/WalletInteractionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ await indexer.GetTokenBalances(
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -219,7 +219,7 @@ await indexer.GetTokenBalances(
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -271,7 +271,7 @@ await indexer.GetTokenBalances(
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -321,7 +321,7 @@ await indexer.GetTokenBalances(
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -357,7 +357,7 @@ public async Task TestGetFeeOptions()
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down Expand Up @@ -414,7 +414,7 @@ public async Task TestFeeOptionsAndSend()
{
tcs.TrySetException(e);
}
}, (error, method, email) =>
}, (error, method, email, methods) =>
{
tcs.TrySetException(new Exception(error));
});
Expand Down

0 comments on commit 9f7575a

Please sign in to comment.