Skip to content

Commit

Permalink
Fix broken unit test due to a change in the url we shown if there is …
Browse files Browse the repository at this point in the history
…an error installing the library
  • Loading branch information
pedrovgs committed Apr 24, 2022
1 parent f32f40b commit e2e1fb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/test/scala/com/karumi/shot/ShotSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ class ShotSpec
.returns(new util.LinkedList[File]())
(console.show _).expects(*)
(console.showWarning _).expects(
"🤔 We couldn't find any screenshot. Did you configure Shot properly and added your tests to your project? https://github.com/Karumi/Shot/#getting-started"
"🤔 We couldn't find any screenshot. Did you configure Shot properly and added your tests to your project? https://github.com/pedrovgs/Shot/#getting-started"
)

shot.verifyScreenshots(
Expand All @@ -257,7 +257,7 @@ class ShotSpec
.returns(new util.LinkedList[File]())
(console.show _).expects(*)
(console.showWarning _).expects(
"🤔 We couldn't find any screenshot. Did you configure Shot properly and added your tests to your project? https://github.com/Karumi/Shot/#getting-started"
"🤔 We couldn't find any screenshot. Did you configure Shot properly and added your tests to your project? https://github.com/pedrovgs/Shot/#getting-started"
)

shot.recordScreenshots(appId, ProjectFolderMother.anyShotFolder, orchestrated = false)
Expand Down

0 comments on commit e2e1fb0

Please sign in to comment.