summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb')
-rw-r--r--spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb b/spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb
index bcf4814edb6..6846a78ec8d 100644
--- a/spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb
+++ b/spec/lib/gitlab/git/wraps_gitaly_errors_spec.rb
@@ -21,7 +21,7 @@ describe Gitlab::Git::WrapsGitalyErrors do
end
it 'does not swallow other errors' do
- expect { wrapper.wrapped_gitaly_errors { raise 'raised' } }
+ expect { wrapper.wrapped_gitaly_errors { raise _('raised') } }
.to raise_error(RuntimeError)
end
end