diff --git a/test/integration/oni-scheme.bats b/test/integration/oni-scheme.bats index 3bd9ec4..873ae57 100755 --- a/test/integration/oni-scheme.bats +++ b/test/integration/oni-scheme.bats @@ -7,7 +7,7 @@ echo "$output" - [ "$output" = "t" ] + [[ "$output" == *"t" ]] } @test "Opening a file with the SCSH interpreter loads scheme-mode" { @@ -23,5 +23,5 @@ echo "$output" - [ "$output" = "scheme-mode" ] + [[ "$output" == *"scheme-mode" ]] }