Skip to content

Commit

Permalink
Fix up bad name in test.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 415244876
  • Loading branch information
dmaclach authored and copybara-github committed Dec 9, 2021
1 parent 103ea9d commit 278a637
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void testMemoryPressure() throws Exception {
runfiles.rlocation(
"io_bazel/src/test/java/com/google/devtools/build/lib/platform/darwin/notifier");
write(
"system_suspension_event/BUILD",
"system_memory_pressure_event/BUILD",
"genrule(",
" name = 'fire_memory_pressure_notifications',",
" outs = ['fire_memory_pressure_notifications.out'],",
Expand All @@ -85,7 +85,7 @@ public void testMemoryPressure() throws Exception {
+ notifierFilePath
+ " com.google.bazel.test.memorypressurelevel.critical 0 >> $@',",
")");
buildTarget("//system_suspension_event:fire_memory_pressure_notifications");
buildTarget("//system_memory_pressure_event:fire_memory_pressure_notifications");
assertThat(eventListener.memoryPressureWarningEventCount).isGreaterThan(0);
assertThat(eventListener.memoryPressureCriticalEventCount).isGreaterThan(0);
}
Expand Down

0 comments on commit 278a637

Please sign in to comment.