Skip to content

Commit

Permalink
Fix test_stream_large_file_data to use a "large" file
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewis Marshall committed Jul 17, 2011
1 parent 3d47cd2 commit 19976ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_send_file.rb
Expand Up @@ -172,7 +172,7 @@ def test_em_send_file_data_not_implemented

def test_stream_large_file_data
File.open( @filename, "w" ) {|f|
f << ("A" * 10000)
f << ("A" * 100000)
}

data = ''
Expand All @@ -185,7 +185,7 @@ def test_stream_large_file_data
end
}

assert_equal( "A" * 10000, data )
assert_equal( "A" * 100000, data )
end

def test_stream_large_chunked_file_data
Expand Down

0 comments on commit 19976ed

Please sign in to comment.