Skip to content

Commit e0d1d10

Browse files
committed
Remove error message for Lint::Error
1 parent 85f5b78 commit e0d1d10

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spec/grape/api_spec.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4756,7 +4756,8 @@ def uniqe_id_route
47564756
end
47574757

47584758
it 'raises a Rack::Lint error' do
4759-
expect { get '/' }.to raise_error(Rack::Lint::LintError, 'Status must be an Integer >=100')
4759+
# Status must be an Integer >= 100
4760+
expect { get '/' }.to raise_error(Rack::Lint::LintError)
47604761
end
47614762
end
47624763
end

0 commit comments

Comments
 (0)