lib/xcpretty/formatters/tap.rb in xcpretty-0.1.12 vs lib/xcpretty/formatters/tap.rb in xcpretty-0.2.0
- old
+ new
@@ -2,11 +2,11 @@
class TestAnything < Knock
attr_reader :counter
- def initialize unicode, color
+ def initialize(unicode, color)
super
@counter = 0
end
def format_passing_test(suite, test_case, time)
@@ -34,6 +34,7 @@
def increment_counter
@counter += 1
end
end
-end
\ No newline at end of file
+end
+