summaryrefslogtreecommitdiff
path: root/spec/lib/system_check/simple_executor_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/system_check/simple_executor_spec.rb')
-rw-r--r--spec/lib/system_check/simple_executor_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/lib/system_check/simple_executor_spec.rb b/spec/lib/system_check/simple_executor_spec.rb
index e71e9da369d..403c6a4e0e4 100644
--- a/spec/lib/system_check/simple_executor_spec.rb
+++ b/spec/lib/system_check/simple_executor_spec.rb
@@ -31,7 +31,7 @@ describe SystemCheck::SimpleExecutor do
end
def check?
- raise 'should not execute this'
+ raise _('should not execute this')
end
end
@@ -45,7 +45,7 @@ describe SystemCheck::SimpleExecutor do
end
def check?
- raise 'should not execute this'
+ raise _('should not execute this')
end
end
@@ -57,7 +57,7 @@ describe SystemCheck::SimpleExecutor do
end
def check?
- raise 'should not execute this'
+ raise _('should not execute this')
end
end
@@ -69,7 +69,7 @@ describe SystemCheck::SimpleExecutor do
end
def multi_check
- raise 'should not execute this'
+ raise _('should not execute this')
end
end
@@ -94,7 +94,7 @@ describe SystemCheck::SimpleExecutor do
set_name 'my bugous check'
def check?
- raise CustomError, 'omg'
+ raise CustomError, _('omg')
end
end