Skip to content

Commit

Permalink
chore: added extra log
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalaber committed Apr 2, 2024
1 parent 5fceffa commit 8d102e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Run build with Gradle Wrapper
run: ./gradlew build
run: ./gradlew build --debug
# Execute unit tests
- name: Unit Test
run: ./gradlew testDebugUnitTest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ class DevCycleClient private constructor(
if (isExecuting.get()) {
configRequestQueue.add(UserAndCallback(updatedUser, callback))
DevCycleLogger.d("Queued identifyUser request for user_id %s", updatedUser.userId)
println("Queued identifyUser request for user_id: " + updatedUser.userId)
return
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class DevCycleClientTests {
// expect only the first and last user id to be sent as a result of the identify calls
try {
// TODO: Figure out why this is inconsistently failing
// Assertions.assertEquals(true, it.path?.contains("expected_userid"))
Assertions.assertEquals(true, it.path?.contains("expected_userid"))
} catch (e: org.opentest4j.AssertionFailedError) {
throw e
}
Expand Down

0 comments on commit 8d102e6

Please sign in to comment.