Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
mstmdev committed Oct 30, 2023
1 parent 434a40e commit ea97fb0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/path_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ func TestNewPath(t *testing.T) {
}
if p.Base() != tc.expectBasePath {
t.Errorf("test new path error, expect base path:%s, actual:%s", tc.expectBasePath, p.Base())
return
}
if p.String() != tc.path {
t.Errorf("test new path error, expect path:%s, actual:%s", tc.path, p.String())
}
})
}
Expand Down

0 comments on commit ea97fb0

Please sign in to comment.