Skip to content

Commit

Permalink
fixup! Assets: Fix False positives with IsValid
Browse files Browse the repository at this point in the history
  • Loading branch information
gbjk committed Nov 24, 2024
1 parent 8bf8783 commit fe524d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchanges/asset/asset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func TestIsValid(t *testing.T) {
require.Truef(t, a.IsValid(), "IsValid must return true for %s", a)
}
}
require.Falsef(t, All.IsValid(), "IsValid must return false for All")
require.False(t, All.IsValid(), "IsValid must return false for All")
}

func TestIsFutures(t *testing.T) {
Expand Down

0 comments on commit fe524d5

Please sign in to comment.