diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-10-30 12:11:08 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-10-30 12:11:08 -0400 |
commit | 3763a9e47383e1e3c801726c151a3e10fd8ee859 (patch) | |
tree | 487cc0e71fec477a1c989cb7cae72c76c86052ca | |
parent | 2ae935a6dbd973730cd6e6aeb5cc5bbfc54949b5 (diff) |
fixing stupid typo.
-rwxr-xr-x | tests/basic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basic b/tests/basic index 8e7f88a..fd1bfb0 100755 --- a/tests/basic +++ b/tests/basic @@ -17,7 +17,7 @@ set -e ## make sure that the right tools are installed to run the test. the ## test has *more* requirements than plain ol' monkeysphere: -[ -x $(which socat) ] || { echo "You must have socat installed to run this test." && exit 1 } +[ -x $(which socat) ] || { echo "You must have socat installed to run this test." && exit 1; } ## FIXME: other checks? |