fixes object

This commit is contained in:
Torsten Ruger
2014-08-16 09:56:11 +03:00
parent a10321922e
commit 7f7a174554
2 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@ require "yaml"
class ObjectWithAttributes
def initialize
@name = "some object"
@name = "some name"
@number = 1234
end
end
OBJECT_STRING = "ObjectWithAttributes(name: 'some object' ,number: 1234)"
OBJECT_STRING = "ObjectWithAttributes(name: 'some name', number: 1234)"
class BasicSof < MiniTest::Test
def test_true