UMM-CSci-Systems / Command-line-introduction

An introduction to Unix command line tools
MIT License
0 stars 14 forks source link

Fix typo in test descriptor #3

Closed NicMcPhee closed 8 years ago

NicMcPhee commented 8 years ago

This description string is broken in this cleaning/tests.bats test:

@test "big_clean.sh creates new 'cleaned_big_dir.tgz' archive" {
  run ./big_clean.sh $little.tgz $BATS_TMPDIR
  [ -f "cleaned_$little.tgz" ]
}

The descriptor refers to big but the test body is all about little. The body is right, and the descriptor needs to be fixed.