Skip to content

Commit

Permalink
Fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pablobaxter committed Sep 19, 2023
1 parent ae8fc9d commit 0cefcd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class SquareProjectModelBuilderTest {
val result = projectExtractor.extractSquareProject(appProject)
val expected = SquareProject(
name = "app",
namespace = "com.squareup.test",
namespace = "com.squareup",
pathToProject = "test/app",
pluginUsed = "android-app",
variants = emptyMap()
Expand Down Expand Up @@ -85,7 +85,7 @@ class SquareProjectModelBuilderTest {
val result = projectExtractor.extractSquareProject(libraryProject)
val expected = SquareProject(
name = "lib",
namespace = "com.squareup.test",
namespace = "com.squareup",
pathToProject = "test/lib",
pluginUsed = "android-library",
variants = emptyMap()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class SquareProjectModelBuilderTest {
val result = projectExtractor.extractSquareProject(appProject)
val expected = SquareProject(
name = "app",
namespace = "com.squareup.test",
namespace = "com.squareup",
pathToProject = "test/app",
pluginUsed = "jvm",
variants = mapOf(
Expand Down

0 comments on commit 0cefcd8

Please sign in to comment.