summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/attachment_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/attachment_test.rb b/test/unit/attachment_test.rb
index 2df639c61..57c457f88 100644
--- a/test/unit/attachment_test.rb
+++ b/test/unit/attachment_test.rb
@@ -84,7 +84,7 @@ class AttachmentTest < ActiveSupport::TestCase
def test_shorted_filename_if_too_long
file = uploaded_test_file("testfile.txt", "text/plain")
file.instance_variable_set('@original_filename', "#{'a'*251}.txt")
- assert 255, file.original_filename.length
+ assert_equal 255, file.original_filename.length
a = Attachment.new(:container => Issue.find(1),
:file => file,