summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/transport/test_algorithms.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transport/test_algorithms.rb b/test/transport/test_algorithms.rb
index 4a864ec..b58b4df 100644
--- a/test/transport/test_algorithms.rb
+++ b/test/transport/test_algorithms.rb
@@ -146,7 +146,7 @@ module Transport
def test_allow_when_not_pending_should_be_true_for_all_packets
(0..255).each do |type|
packet = stub("packet", :type => type)
- assert algorithms.allow?(packet), type
+ assert algorithms.allow?(packet), type.to_s
end
end
@@ -299,4 +299,4 @@ module Transport
end
end
-end \ No newline at end of file
+end