Skip to content

Commit

Permalink
try 10.0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aarsilv committed Oct 24, 2023
1 parent c181fa9 commit 7d11638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,4 @@ jobs:
arch: x86_64
script: |
echo "Emulator started"
adb forward tcp:4001 tcp:4001
./gradlew connectedCheck
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public class EppoClientTest {
private static final String TAG = EppoClientTest.class.getSimpleName();
private static final int TEST_PORT = 4001;

private static final String HOST = "http://localhost:" + TEST_PORT;
private static final String INVALID_HOST = "http://localhost:" + (TEST_PORT + 1);
private static final String HOST = "http://10.0.2.2:" + TEST_PORT;
private static final String INVALID_HOST = "http://10.0.2.2:" + (TEST_PORT + 1);
private WireMockServer mockServer;
private Gson gson = new GsonBuilder()
.registerTypeAdapter(EppoValue.class, new EppoValueAdapter())
Expand Down

0 comments on commit 7d11638

Please sign in to comment.