diff options
Diffstat (limited to 'Tests/XCTest')
-rw-r--r-- | Tests/XCTest/CocoaExample/AppDelegate.h | 3 | ||||
-rw-r--r-- | Tests/XCTest/FrameworkExample/FrameworkExample.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Tests/XCTest/CocoaExample/AppDelegate.h b/Tests/XCTest/CocoaExample/AppDelegate.h index 4bf4101..11b5886 100644 --- a/Tests/XCTest/CocoaExample/AppDelegate.h +++ b/Tests/XCTest/CocoaExample/AppDelegate.h @@ -1,6 +1,5 @@ #import <Cocoa/Cocoa.h> -@interface AppDelegate : NSObject <NSApplicationDelegate> - +@interface AppDelegate : NSObject<NSApplicationDelegate> @end diff --git a/Tests/XCTest/FrameworkExample/FrameworkExample.c b/Tests/XCTest/FrameworkExample/FrameworkExample.c index 2da78da..77361c8 100644 --- a/Tests/XCTest/FrameworkExample/FrameworkExample.c +++ b/Tests/XCTest/FrameworkExample/FrameworkExample.c @@ -2,5 +2,5 @@ int FourtyTwo() { - return 42; + return 42; } |