aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/git-annex.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/git-annex.rb b/Library/Formula/git-annex.rb
index 62618d18a..cfb78eaf2 100644
--- a/Library/Formula/git-annex.rb
+++ b/Library/Formula/git-annex.rb
@@ -50,7 +50,7 @@ class GitAnnex < Formula
# and propagate its content to another
system "git", "clone", "my_annex", "my_annex_clone"
Dir.chdir "my_annex_clone" do
- assert (not File.file? "bigfile")
+ assert !File.file?("bigfile")
system "git", "annex", "get", "bigfile"
assert File.file? "bigfile"
end