Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
- name: Compile
run: ./gradlew compileJava

- name: Check formatting
run: ./gradlew spotlessCheck

test:
needs: [ compile ]
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ void billingMetricOverride_populatesResetAt() throws Exception {

// setCurrentTimeMillis lets the engine compute the next reset boundary.
assertTrue(
result.getFeatureUsageResetAt().isPresent(),
"reset-at should be computed from the injected host time");
result.getFeatureUsageResetAt().isPresent(), "reset-at should be computed from the injected host time");
}
}
Loading