README.md in snapshot-1.4.2 vs README.md in snapshot-1.4.3

- old
+ new

@@ -140,10 +140,10 @@ - Create a new UI Test target in your Xcode project ([top part of this article](https://krausefx.com/blog/run-xcode-7-ui-tests-from-the-command-line)) - Run `snapshot init` in your project folder - Add the ./SnapshotHelper.swift to your UI Test target (You can move the file anywhere you want) - (Objective C only) add the bridging header to your test class. - - `#import “MYUITests-Swift.h"` + - `#import "MYUITests-Swift.h"` - The bridging header is named after your test target with -Swift.h appended. - In your UI Test class, click the `Record` button on the bottom left and record your interaction - To take a snapshot, call the following between interactions - Swift: `snapshot("01LoginScreen")` - Objective C: `[Snapshot snapshot:@"01LoginScreen" waitForLoadingIndicator:YES];`