File tree 2 files changed +5
-5
lines changed
Demo/EarlGreyExample/EarlGreyExampleSwiftTests
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Details changes in each release of EarlGrey. EarlGrey follows [ semantic versioning] ( http://semver.org/ ) .
4
4
5
- ## [ 1.13.0] ( https://github.com/google/EarlGrey/tree/1.13.0 ) (04/02 /2018)
5
+ ## [ 1.13.0] ( https://github.com/google/EarlGrey/tree/1.13.0 ) (04/03 /2018)
6
6
```
7
- Baseline: [f5739bd ]
8
- + [f5739bd ]: fix comment style
7
+ Baseline: [2b3939a ]
8
+ + [2b3939a ]: Fix Swift file issues with the updated EarlGrey code for release 1.13.0
9
9
```
10
10
11
11
### Enhancements
Original file line number Diff line number Diff line change @@ -219,8 +219,8 @@ class EarlGreyExampleSwiftTests: XCTestCase {
219
219
return true
220
220
} )
221
221
// Wait for my condition to be satisfied or timeout after 5 seconds.
222
- let success = myCondition? . wait ( withTimeout: 5 )
223
- if !success! {
222
+ let success = myCondition. wait ( withTimeout: 5 )
223
+ if !success {
224
224
// Just printing for the example.
225
225
print ( " Condition not met " )
226
226
} else {
You can’t perform that action at this time.
0 commit comments