Skip to content

Commit

Permalink
fix error in equality test ... was not using -isEqualForTestcase: in …
Browse files Browse the repository at this point in the history
…one place

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@36487 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
rfm committed Apr 8, 2013
1 parent 07c7ca3 commit 2f9a49e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2012-04-08 Richard Frith-Macdonald <[email protected]>

* TestFramework/ObjectTesting.h: Fix error performing equality test
in copying protocol test macro.

2012-03-28 Richard Frith-Macdonald <[email protected]>

Make release
Expand Down
2 changes: 1 addition & 1 deletion TestFramework/ObjectTesting.h
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ static void test_keyed_NSCoding(NSArray *OJS)
PASS(theCopy != nil, "%s understands -copyWithZone", prefix); \
PASS([theCopy isKindOfClass: iClass], \
"%s zCopy has correct type", prefix); \
PASS([theObj isEqual: theCopy], \
PASS_EQUAL(theCopy, theObj, \
"%s copy and original are equal", prefix); \
if (immutable) \
{ \
Expand Down

0 comments on commit 2f9a49e

Please sign in to comment.