Skip to content

Commit

Permalink
improved failure messages
Browse files Browse the repository at this point in the history
  • Loading branch information
spowelljr committed Apr 21, 2021
1 parent cd93ee9 commit 68171b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/minikube/out/out_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ func TestLatestLogPath(t *testing.T) {
os.Args = tt.args
got, err := latestLogFilePath()
if err != nil {
t.Fatalf("failed latestLogFilePath(): %v", err)
t.Fatalf("os.Args = %s; latestLogFilePath() failed with error = %v", tt.args, err)
}
if got != tt.want {
t.Errorf("oa.Args = %s; latestLogFilePath() = %q; wanted to contain %q", tt.args, got, tt.want)
t.Errorf("os.Args = %s; latestLogFilePath() = %q; wanted %q", tt.args, got, tt.want)
}
}
}

0 comments on commit 68171b4

Please sign in to comment.