Skip to content

Commit

Permalink
Looks like I made a mistake resolving conflicts and removed a test. R…
Browse files Browse the repository at this point in the history
…eadding it.
  • Loading branch information
wyhaines committed Dec 5, 2024
1 parent a01fd78 commit 3ff9fe8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions examples/gno.land/p/demo/ufmt/ufmt_test.gno
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ func TestSprintf(t *testing.T) {
{"uint32 [%d]", []interface{}{uint32(32)}, "uint32 [32]"},
{"uint32 [%v]", []interface{}{uint32(32)}, "uint32 [32]"},
{"uint64 [%d]", []interface{}{uint64(64)}, "uint64 [64]"},
{"uint64 [%v]", []interface{}{uint64(64)}, "uint64 [64]"},
{"float64 [%e]", []interface{}{float64(64.1)}, "float64 [6.41e+01]"},
{"float64 [%E]", []interface{}{float64(64.1)}, "float64 [6.41E+01]"},
{"float64 [%f]", []interface{}{float64(64.1)}, "float64 [64.100000]"},
Expand Down

0 comments on commit 3ff9fe8

Please sign in to comment.