Skip to content

Instantly share code, notes, and snippets.

@Serchinastico
Created October 3, 2018 08:28
Show Gist options
  • Save Serchinastico/fbde5f78b2552ed065db1c6376aa48de to your computer and use it in GitHub Desktop.
Save Serchinastico/fbde5f78b2552ed065db1c6376aa48de to your computer and use it in GitHub Desktop.
From cf90b931886b5414bd7db6d14eb5f7aa9a3b7329 Mon Sep 17 00:00:00 2001
From: Sergio Gutierrez <sergio@gokarumi.com>
Date: Wed, 3 Oct 2018 10:27:23 +0200
Subject: [PATCH] Fix facebook version in test
---
core/src/test/scala/com/karumi/shot/domain/ConfigSpec.scala | 2 +-
shot-consumer/build.gradle | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/test/scala/com/karumi/shot/domain/ConfigSpec.scala b/core/src/test/scala/com/karumi/shot/domain/ConfigSpec.scala
index f9bd2f9..6b48148 100644
--- a/core/src/test/scala/com/karumi/shot/domain/ConfigSpec.scala
+++ b/core/src/test/scala/com/karumi/shot/domain/ConfigSpec.scala
@@ -5,7 +5,7 @@ import org.scalatest.{FlatSpec, Matchers}
class ConfigSpec extends FlatSpec with Matchers {
"Config" should "use the screenshot tests library implemented by Facebook" in {
- Config.androidDependency shouldBe "com.facebook.testing.screenshot:core:0.6.0"
+ Config.androidDependency shouldBe "com.facebook.testing.screenshot:core:0.8.0"
}
it should "add the dependency using the androidTestCompile mode" in {
diff --git a/shot-consumer/build.gradle b/shot-consumer/build.gradle
index c4ebcc1..af065f1 100644
--- a/shot-consumer/build.gradle
+++ b/shot-consumer/build.gradle
@@ -12,7 +12,7 @@ allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
- google()
+ google()
}
apply plugin: 'checkstyle'
--
2.15.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment