Fixed Andy's PR feedback. Missed a couple bad regexes

This commit is contained in:
Timothy Sehn
2020-04-06 12:03:10 -07:00
parent b96c3a9336
commit e643b559f5
+2 -2
View File
@@ -154,7 +154,7 @@ SQL
# confirm a difference exists
run dolt diff --sql newbranch firstbranch
[ "$status" -eq 0 ]
[[ ! "$output" =~ "" ]] || false
[ ! "$output" = "" ]
dolt diff --sql newbranch firstbranch > query
dolt checkout firstbranch
@@ -355,7 +355,7 @@ SQL
# confirm a difference exists
run dolt diff --sql newbranch firstbranch
[ "$status" -eq 0 ]
[[ ! "$output" =~ "" ]] || false
[ ! "$output" = "" ] || false
dolt diff --sql newbranch firstbranch > query
dolt checkout firstbranch