Skip to content

Commit 1d50700

Browse files
authored
Merge pull request #695 from tirodkar/upSwift
Update Swift file and CHANGELOG for 1.13.0 release.
2 parents ef91417 + f6be965 commit 1d50700

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Details changes in each release of EarlGrey. EarlGrey follows [semantic versioning](http://semver.org/).
44

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)
66
```
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
99
```
1010

1111
### Enhancements

Demo/EarlGreyExample/EarlGreyExampleSwiftTests/EarlGreyExampleSwiftTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ class EarlGreyExampleSwiftTests: XCTestCase {
219219
return true
220220
})
221221
// 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 {
224224
// Just printing for the example.
225225
print("Condition not met")
226226
} else {

0 commit comments

Comments
 (0)