Skip to content

Commit

Permalink
Fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
FabrizioBrancati committed Oct 30, 2018
1 parent a5a1867 commit 307f1ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -32,10 +32,10 @@ matrix:
language: objective-c
osx_image: xcode10
env: PROJ="Queuer.xcodeproj" DESTINATION="OS=9.0,name=iPhone 5s" SCHEME="$IOS_SCHEME" RUN_TESTS="YES" LINT="NO" COVERAGE="NO"
- os: osx
language: objective-c
osx_image: xcode10
env: PROJ="Queuer.xcodeproj" DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_SCHEME" RUN_TESTS="YES" LINT="NO" COVERAGE="NO"
# - os: osx
# language: objective-c
# osx_image: xcode10
# env: PROJ="Queuer.xcodeproj" DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="$IOS_SCHEME" RUN_TESTS="YES" LINT="NO" COVERAGE="NO"
- os: osx
language: objective-c
osx_image: xcode10
Expand Down
4 changes: 2 additions & 2 deletions Sources/Queuer/ConcurrentOperation.swift
Expand Up @@ -151,11 +151,11 @@ open class ConcurrentOperation: Operation {
}

/// Pause the current `Operation`, if it's supported.
/// Must be overridend by subclass to get a custom pause action.
/// Must be overridden by a subclass to get a custom pause action.
open func pause() {}

/// Resume the current `Operation`, if it's supported.
/// Must be overridend by subclass to get a custom resume action.
/// Must be overridden by a subclass to get a custom resume action.
open func resume() {}
}

Expand Down
2 changes: 1 addition & 1 deletion Tests/QueuerTests/QueuerTests.swift
Expand Up @@ -344,7 +344,7 @@ internal class QueuerTests: XCTestCase {
testExpectation.fulfill()
}

DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + .seconds(1)) {
DispatchQueue.global(qos: .background).asyncAfter(deadline: .now() + .seconds(2)) {
state = queue.state()
}

Expand Down

0 comments on commit 307f1ac

Please sign in to comment.