Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,14 @@ struct AuthenticatorMock: Authenticator {

### Using Swift Package Manager

Add to `Package.swift`:
Simply add a package to your project passing in https://github.com/EasyPackages/EasySymbol.

In your dependency you can add this in your Package.swift:

```swift
dependencies: [
.package(
url: "https://github.com/your-username/EasyMock.git",
url: "https://github.com/EasyPackages/EasyMock.git",
from: "1.0.0"
)
]
Expand Down
4 changes: 2 additions & 2 deletions Tests/EasyMockTests/AsyncMockTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ struct AsyncMockTests {
}

@Test("should wait for the configured delay before completing")
func testsynchronizeAppliesDelay() async {
func testsynchronizeAppliesDelay() async throws {
let delay = 0.2
let tolerance = 0.05
let tolerance = 0.2
let clock = ContinuousClock()
let start = clock.now
let sut = makeSut()
Expand Down
2 changes: 1 addition & 1 deletion Tests/EasyMockTests/AsyncThrowableMockTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ struct AsyncThrowableMockTests {
@Test("should wait for the configured delay before completing")
func testsynchronizeAppliesDelay() async throws {
let delay = 0.2
let tolerance = 0.05
let tolerance = 0.2
let clock = ContinuousClock()
let start = clock.now
let sut = makeSut()
Expand Down