Skip to content

Commit

Permalink
Silence pointless output.
Browse files Browse the repository at this point in the history
  • Loading branch information
djcp committed Aug 16, 2013
1 parent 5eee136 commit 87da62d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/linux-components/distro-check_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

testSupportedDistros() {
for RELEASE_FILE in files/os-release*; do
RELEASE_FILE=$RELEASE_FILE zsh ../linux-components/distro-check
RELEASE_FILE=$RELEASE_FILE zsh ../linux-components/distro-check &> /dev/null
assertEquals 0 $?
done
}

testRejectedDistros(){
RELEASE_FILE=files/bad-os-release zsh ../linux-components/distro-check
RELEASE_FILE=files/bad-os-release zsh ../linux-components/distro-check &> /dev/null
assertEquals 1 $?
}

Expand Down

0 comments on commit 87da62d

Please sign in to comment.