Skip to content

Commit

Permalink
Merge pull request #695 from tirodkar/upSwift
Browse files Browse the repository at this point in the history
Update Swift file and CHANGELOG for 1.13.0 release.
  • Loading branch information
ynzhang0509 authored Apr 4, 2018
2 parents ef91417 + f6be965 commit 1d50700
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

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

## [1.13.0](https://github.com/google/EarlGrey/tree/1.13.0) (04/02/2018)
## [1.13.0](https://github.com/google/EarlGrey/tree/1.13.0) (04/03/2018)
```
Baseline: [f5739bd]
+ [f5739bd]: fix comment style
Baseline: [2b3939a]
+ [2b3939a]: Fix Swift file issues with the updated EarlGrey code for release 1.13.0
```

### Enhancements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ class EarlGreyExampleSwiftTests: XCTestCase {
return true
})
// Wait for my condition to be satisfied or timeout after 5 seconds.
let success = myCondition?.wait(withTimeout: 5)
if !success! {
let success = myCondition.wait(withTimeout: 5)
if !success {
// Just printing for the example.
print("Condition not met")
} else {
Expand Down

0 comments on commit 1d50700

Please sign in to comment.