Remove uniq on warnings that confused output

This commit is contained in:
Benjamin Fleischer 2015-08-21 02:23:36 -04:00
parent 530a1bdfd7
commit a8e9bb1c14

View File

@ -20,7 +20,7 @@ class CaptureWarnings
def after_tests
stderr_file.rewind
lines = stderr_file.read.split("\n").uniq
lines = stderr_file.read.split("\n")
stderr_file.close!
$stderr.reopen(STDERR)