Skip to content

Commit

Permalink
Minor test improvment, contains instead of equatl (#2379)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Jul 13, 2020
1 parent d68a149 commit 2e98077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ddev/cmd/commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func TestCustomCommands(t *testing.T) {
command.Stdin = f
byteOut, err := command.CombinedOutput()
require.NoError(t, err, "Failed ddev mysql; output=%v", string(byteOut))
assert.Equal("99\n99\n", string(byteOut))
assert.Contains(string(byteOut), "99\n99\n")

_ = os.RemoveAll(projectCommandsDir)
_ = os.RemoveAll(globalCommandsDir)
Expand Down

0 comments on commit 2e98077

Please sign in to comment.