Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
165 changes: 0 additions & 165 deletions contract/p/gnoswap/int256/runtime_metrics_test.gno

This file was deleted.

3 changes: 3 additions & 0 deletions contract/p/gnoswap/uint256/_helper_test.gno
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ func shouldPanicWithMsg(t *testing.T, f func(), msg string) {

// for original tests
func parseUint(s string) *Uint {
if len(s) >= 2 && s[:2] == "0x" {
return MustFromHex(s)
}
return MustFromDecimal(s)
}

Expand Down
Loading
Loading