Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sivchari committed Mar 8, 2022
1 parent 7565b6c commit 6a1b5a9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _test/sta2/sta2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TestStation2(t *testing.T) {

t.Cleanup(func() {
if err := os.Remove(dbPath); err != nil {
t.Error("dbPathnの削除に失敗しました。", err)
t.Errorf("テスト用のDBファイルの削除に失敗しました: %v", err)
return
}
})
Expand Down
2 changes: 1 addition & 1 deletion _test/sta5/sta5_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func TestStation5(t *testing.T) {

t.Cleanup(func() {
if err := os.Remove(dbPath); err != nil {
t.Error("dbPathnの削除に失敗しました。", err)
t.Errorf("テスト用のDBファイルの削除に失敗しました: %v", err)
return
}
})
Expand Down
2 changes: 1 addition & 1 deletion _test/sta8/sta8_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func TestStation8(t *testing.T) {
return
}
if err := os.Remove(dbpath); err != nil {
t.Error("dbPathnの削除に失敗しました。", err)
t.Errorf("テスト用のDBファイルの削除に失敗しました: %v", err)
return
}
})
Expand Down
2 changes: 1 addition & 1 deletion _test/sta9/sta9_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func TestStation9(t *testing.T) {

t.Cleanup(func() {
if err := os.Remove(dbPath); err != nil {
t.Error("dbPathnの削除に失敗しました。", err)
t.Errorf("テスト用のDBファイルの削除に失敗しました: %v", err)
return
}
})
Expand Down

0 comments on commit 6a1b5a9

Please sign in to comment.