@@ -31,19 +31,19 @@ _fails++; \ } \ } #define EXPECT_EXCEPTION(test, exception, code) \ { \ - BOOL caught = NO; \ + bool caught = false; \ \ [self outputTesting: test \ inModule: module]; \ \ @try { \ code; \ } @catch (exception *e) { \ - caught = YES; \ + caught = true; \ } \ \ if (caught) \ [self outputSuccess: test \ inModule: module]; \