lib/system_description_store.rb in machinery-tool-1.9.0 vs lib/system_description_store.rb in machinery-tool-1.9.1
- old
+ new
@@ -132,18 +132,18 @@
end
def validate_existence_of_description(description_name)
if !list.include?(description_name)
raise Machinery::Errors::SystemDescriptionNotFound.new(
- "System description \"#{description_name}\" does not exist."
+ "System description '#{description_name}' does not exist."
)
end
end
def validate_nonexistence_of_description(description_name)
if list.include?(description_name)
raise Machinery::Errors::SystemDescriptionError.new(
- "A System description with the name \"#{description_name}\" does already exist."
+ "A System description with the name '#{description_name}' does already exist."
)
end
end
end