spec/support/models/person.rb in arstotzka-1.4.2 vs spec/support/models/person.rb in arstotzka-1.4.3
- old
+ new
@@ -7,8 +7,9 @@
@name = name
end
def ==(other)
return false unless other.class == self.class
+
other.name == name
end
end