From fc6ae719b88ddad8e0cff95c12e2e089ddd52af8 Mon Sep 17 00:00:00 2001 From: Zach Musgrave Date: Thu, 2 Nov 2023 14:23:29 -0700 Subject: [PATCH] Removed redundant feature version test (we check this in setup in many places already) --- integration-tests/bats/status.bats | 8 -------- 1 file changed, 8 deletions(-) diff --git a/integration-tests/bats/status.bats b/integration-tests/bats/status.bats index 412ec96367..32eda479dc 100644 --- a/integration-tests/bats/status.bats +++ b/integration-tests/bats/status.bats @@ -14,14 +14,6 @@ get_head_commit() { dolt log -n 1 | grep -m 1 commit | cut -c 13-44 } -@test "status: dolt version --feature" { - # bump this test with feature version bumps - run dolt version --feature - [ "$status" -eq 0 ] - [[ "$output" =~ "dolt version" ]] || false - [[ "$output" =~ "feature version: 4" ]] || false -} - @test "status: no changes" { run dolt status [ "$status" -eq 0 ]