Skip to content

Commit

Permalink
fix: Linter warning (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
obalunenko committed Nov 19, 2021
1 parent 9ea9d3d commit 6ac3bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/puzzles/name_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package puzzles

import (
"os"
"path/filepath"
"testing"

"github.com/stretchr/testify/assert"
Expand All @@ -25,7 +25,7 @@ func TestMakeName(t *testing.T) {
year: "2019",
puzzle: "day01",
},
want: "2019" + string(os.PathSeparator) + "day01",
want: filepath.Join("2019", "day01"),
wantErr: false,
},
{
Expand Down

0 comments on commit 6ac3bb3

Please sign in to comment.