Skip to content

Commit

Permalink
fixed e2e order test column formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cppforlife committed Sep 16, 2019
1 parent b242071 commit a9f4835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/order_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func replaceTs(result string) string {
}

func replaceAgeStr(result string) string {
return regexp.MustCompile("\\d+(s|m|h)").ReplaceAllString(result, "<replaced>")
return regexp.MustCompile("\\d+(s|m|h)\\s+").ReplaceAllString(result, "<replaced> ")
}

func replaceSpaces(result string) string {
Expand Down

0 comments on commit a9f4835

Please sign in to comment.