We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613177f commit 7370b89Copy full SHA for 7370b89
Thirdweb.Tests/Thirdweb.RPC/Thirdweb.RPC.Tests.cs
@@ -107,7 +107,7 @@ public async Task TestAuth()
107
var client = ThirdwebClient.Create(clientId: "hi", fetchTimeoutOptions: new TimeoutOptions(rpc: 60000));
108
var rpc = ThirdwebRPC.GetRpcInstance(client, 1);
109
var ex = await Assert.ThrowsAsync<HttpRequestException>(async () => await rpc.SendRequestAsync<string>("eth_blockNumber"));
110
- Assert.Contains("Unauthorized", ex.Message);
+ Assert.Contains("401", ex.Message);
111
}
112
113
[Fact(Timeout = 120000)]
0 commit comments