Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Kenney committed Feb 22, 2024
1 parent 7b389b1 commit 25d2093
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/bdlm/cast/v2

go 1.18
go 1.21

require (
github.com/bdlm/errors/v2 v2.1.2
Expand Down
2 changes: 1 addition & 1 deletion to.bool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestVariousToBool(t *testing.T) {
{"1.5", true, nil, false},
{"1.9", true, nil, false},
{"0.0", false, nil, false},
{"0.1", true, nil, false},
{"0.1", false, nil, false},
{"-1.1", true, nil, false},
{"-1.4", true, nil, false},
{"-1.1", true, nil, false},
Expand Down

0 comments on commit 25d2093

Please sign in to comment.