mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
f7aa3e015f
commit
7326469c41
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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) \
|
||||
{ \
|
||||
|
|
Loading…
Reference in a new issue