Skip to content

Commit 633f861

Browse files
cleanup: remove dead IntegrationTests.cs, fix FG02 timing
Deleted IntegrationTests.cs — all 9 tests were Skip placeholders with empty bodies (await Task.CompletedTask). Increased FG02_RevokeFeeAllowance delays from 8s to 12s to prevent sequence mismatch on chain propagation. Result: 816 passed, 0 failed, 0 skipped. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent ad5f51a commit 633f861

2 files changed

Lines changed: 2 additions & 131 deletions

File tree

tests/Sentinel.SDK.Tests/ExhaustiveChainTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public async Task FG02_RevokeFeeAllowance()
333333
using var user = SentinelWallet.Generate();
334334
var grantMsg = MessageBuilder.GrantFeeAllowance(_opWallet!.Address, user.Address, 1_000_000);
335335
await _tx.BroadcastAsync(grantMsg);
336-
await Task.Delay(8000);
336+
await Task.Delay(12000);
337337

338338
// Revoke
339339
var revokeMsg = MessageBuilder.RevokeFeeAllowance(_opWallet.Address, user.Address);
@@ -342,7 +342,7 @@ public async Task FG02_RevokeFeeAllowance()
342342
Assert.True(r.Success, r.RawLog);
343343

344344
// Verify revoked
345-
await Task.Delay(8000);
345+
await Task.Delay(12000);
346346
var grants = await _chain!.QueryFeeGrantsAsync(user.Address);
347347
_out.WriteLine($"Grants after revoke: {grants.Count}");
348348
Assert.Equal(0, grants.Count);

tests/Sentinel.SDK.Tests/IntegrationTests.cs

Lines changed: 0 additions & 129 deletions
This file was deleted.

0 commit comments

Comments
 (0)