Skip to content

Commit 7123619

Browse files
committed
Fix missing await in LoginWithGuest call in tests
Added missing 'await' to the LoginWithGuest method call in BaseTests.cs to ensure proper asynchronous execution during test setup.
1 parent 9ef0d3d commit 7123619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Thirdweb.Tests/BaseTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public async Task<IThirdwebWallet> GetGuestAccount()
3737
{
3838
await iaw.Disconnect();
3939
}
40-
_ = iaw.LoginWithGuest(defaultSessionIdOverride: Guid.NewGuid().ToString());
40+
_ = await iaw.LoginWithGuest(defaultSessionIdOverride: Guid.NewGuid().ToString());
4141
return iaw;
4242
}
4343

0 commit comments

Comments
 (0)