Skip to content

Commit 49c1c73

Browse files
committed
Re-enabled test warnings
We previously disabled warnings in tests due to an issue with addressable 2.4 that caused huge numbers of warning messages in every test run. That issue has been fixed now, so we can reenable warnings (which should help detect potential issues in new code)
1 parent 9c9719f commit 49c1c73

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Rakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ end
2121

2222
Rake::TestTask.new do |t|
2323
t.libs << "."
24-
# disabled warnings because addressable 2.4 has lots of them
25-
t.warning = false
24+
t.warning = true
2625
t.verbose = true
2726
t.test_files = FileList.new('test/*_test.rb')
2827
end

0 commit comments

Comments
 (0)