fix the 2 thing

This commit is contained in:
Thomas Levine 2012-10-11 00:46:52 -04:00
parent c89dbb09cb
commit f776f4174b
4 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
[ $(grep -c 'setup has run' .log) > '2' ]
[ $(grep -c 'setup has run' .log) -gt '2' ]

View File

@ -1,3 +1,3 @@
#!/bin/sh
[ $(grep -c 'setup has run' .log) > '2' ]
[ $(grep -c 'setup has run' .log) -gt '2' ]

View File

@ -1,3 +1,3 @@
#!/bin/sh
[ $(grep -c 'teardown has run' .log) > '2' ]
[ $(grep -c 'teardown has run' .log) -gt '2' ]

View File

@ -1,3 +1,3 @@
#!/bin/sh
[ $(grep -c 'teardown has run' .log) > '2' ]
[ $(grep -c 'teardown has run' .log) -gt '2' ]