fix error in equality test ... was not using -isEqualForTestcase: in one place

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@36487 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-04-08 08:14:08 +00:00
parent f7aa3e015f
commit 7326469c41
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-04-08 Richard Frith-Macdonald <rfm@gnu.org>
* TestFramework/ObjectTesting.h: Fix error performing equality test
in copying protocol test macro.
2012-03-28 Richard Frith-Macdonald <rfm@gnu.org>
Make release

View file

@ -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) \
{ \