Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
Fixing test to make it not care if it detects the B cycle or A cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelikespie committed Jul 20, 2016
1 parent 4f49e92 commit b90657a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CleanseTests/CycleTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class CycleTests: XCTestCase {
XCTFail("Should not succeed")
} catch let e as DependencyCycle {
let message = e.description
Assert(message, contains: "*** AA *** Dependency Cycle Detected")
Assert(message, contains: "Dependency Cycle Detected")
Assert(message, contains: "required by AA at CleanseTests/CycleTests.swift")
Assert(message, contains: "required by BB at CleanseTests/CycleTests.swift")
} catch let e {
Expand Down

0 comments on commit b90657a

Please sign in to comment.