Skip to content

Commit

Permalink
fixup! feat(golang-rewrite): address shell formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Stratus3D committed Nov 27, 2024
1 parent 0489cab commit 4147285
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/shim_env_command.bats
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ teardown() {

# Create a "system" dummy executable
echo '#!/usr/bin/env bash
echo "system dummy"' >$ASDF_BIN/dummy
chmod +x $ASDF_BIN/dummy
echo "system dummy"' >"$ASDF_BIN/dummy"
chmod +x "$ASDF_BIN/dummy"

echo "dummy system" >"$PROJECT_DIR/.tool-versions"

Expand All @@ -88,7 +88,7 @@ teardown() {
[ "$output" = "$ASDF_BIN/dummy" ]
[ "$status" -eq 0 ]
# Remove "system" dummy executable
rm $ASDF_BIN/dummy
rm "$ASDF_BIN/dummy"
}

@test "asdf env should set PATH correctly" {
Expand Down

0 comments on commit 4147285

Please sign in to comment.