diff --git a/convert_test.go b/convert_test.go index 549c0fa..a32f8b9 100644 --- a/convert_test.go +++ b/convert_test.go @@ -42,7 +42,7 @@ func TestMove(t *testing.T) { // make sure the README file moved _, err = os.Stat(filepath.Join(v2dir, "README_ALSO")) if err != nil { - t.Fatalf(err.Error()) + t.Fatal(err.Error()) } // check that all keys are available @@ -52,7 +52,7 @@ func TestMove(t *testing.T) { shard := filepath.Join(v2dir, flatfs.NextToLast(2).Func()(keys[0].String())) _, err = os.Stat(shard) if err != nil { - t.Fatalf(err.Error()) + t.Fatal(err.Error()) } } @@ -128,7 +128,7 @@ func TestMoveRestart(t *testing.T) { shard := filepath.Join(v2dir, flatfs.NextToLast(2).Func()(keys[0].String())) _, err = os.Stat(shard) if err != nil { - t.Fatalf(err.Error()) + t.Fatal(err.Error()) } } diff --git a/go.mod b/go.mod index af55113..54c3cb3 100644 --- a/go.mod +++ b/go.mod @@ -16,4 +16,4 @@ require ( golang.org/x/tools v0.0.0-20210106214847-113979e3529a // indirect ) -go 1.22 +go 1.23