summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/types/filesources.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/types/filesources.rb b/test/types/filesources.rb
index e4e59bb78..d9afcf681 100755
--- a/test/types/filesources.rb
+++ b/test/types/filesources.rb
@@ -85,7 +85,7 @@ class TestFileSources < Test::Unit::TestCase
assert_apply(tofile)
- assert(FileTest.exists?(topath))
+ assert(FileTest.exists?(topath), "File #{topath} is missing")
from = File.open(frompath) { |o| o.read }
to = File.open(topath) { |o| o.read }
assert_equal(from,to)