From 3e016e7ef64e1f5bcb494de7136385c17c5402bd Mon Sep 17 00:00:00 2001 From: James Cor Date: Thu, 7 Apr 2022 11:41:24 -0700 Subject: [PATCH] updating feature version test --- integration-tests/bats/helper/common.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/bats/helper/common.bash b/integration-tests/bats/helper/common.bash index eb5df837f1..a49d3ca428 100644 --- a/integration-tests/bats/helper/common.bash +++ b/integration-tests/bats/helper/common.bash @@ -51,7 +51,7 @@ assert_feature_version() { # Tests that don't end in a valid dolt dir will fail the above # command, don't check its output in that case if [ "$status" -eq 0 ]; then - [[ "$output" =~ "feature version: 2" ]] || exit 1 + [[ "$output" =~ "feature version: 3" ]] || exit 1 fi }