From e2e1fb07d88867ed520c07a2d70cff1f78cf64a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20G=C3=B3mez?= Date: Sun, 24 Apr 2022 17:51:47 +0200 Subject: [PATCH] Fix broken unit test due to a change in the url we shown if there is an error installing the library --- core/src/test/scala/com/karumi/shot/ShotSpec.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/test/scala/com/karumi/shot/ShotSpec.scala b/core/src/test/scala/com/karumi/shot/ShotSpec.scala index a4411754..78ce995a 100644 --- a/core/src/test/scala/com/karumi/shot/ShotSpec.scala +++ b/core/src/test/scala/com/karumi/shot/ShotSpec.scala @@ -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( @@ -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)