diff --git a/lib/error_highlight/core_ext.rb b/lib/error_highlight/core_ext.rb index 130f9ef832..00d5671648 100644 --- a/lib/error_highlight/core_ext.rb +++ b/lib/error_highlight/core_ext.rb @@ -37,9 +37,6 @@ module ErrorHighlight end NameError.prepend(CoreExt) - - # The extension for TypeError/ArgumentError is temporarily disabled due to many test failures - - #TypeError.prepend(CoreExt) - #ArgumentError.prepend(CoreExt) + TypeError.prepend(CoreExt) + ArgumentError.prepend(CoreExt) end