fix error in warning text

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39459 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2016-03-05 14:42:11 +00:00
parent 0323003b7e
commit 4f8626830e

View file

@ -36,7 +36,7 @@ int main()
"NSRecursiveLock isLockedByCurrentThread returns NO when not locked");
[lock lock];
PASS([lock isLockedByCurrentThread] == YES,
"NSRecursiveLock isLockedByCurrentThread returns YES when not locked");
"NSRecursiveLock isLockedByCurrentThread returns YES when locked");
[lock unlock];
PASS([lock isLockedByCurrentThread] == NO,
"NSRecursiveLock isLockedByCurrentThread returns NO when unlocked");