From ffbf6a1fa2480e2019cafa46abd2177e52615cf8 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Thu, 15 Dec 2022 21:53:08 -0800 Subject: [PATCH] [commands] Disable regularly failing unit test (#4824) --- .../test/native/cpp/frc2/command/SchedulingRecursionTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpilibNewCommands/src/test/native/cpp/frc2/command/SchedulingRecursionTest.cpp b/wpilibNewCommands/src/test/native/cpp/frc2/command/SchedulingRecursionTest.cpp index 733117c7bc..4aa5199230 100644 --- a/wpilibNewCommands/src/test/native/cpp/frc2/command/SchedulingRecursionTest.cpp +++ b/wpilibNewCommands/src/test/native/cpp/frc2/command/SchedulingRecursionTest.cpp @@ -57,7 +57,7 @@ TEST_F(SchedulingRecursionTest, CancelFromInitialize) { } TEST_P(SchedulingRecursionTest, - DefaultCommandGetsRescheduledAfterSelfCanceling) { + DISABLED_DefaultCommandGetsRescheduledAfterSelfCanceling) { CommandScheduler scheduler = GetScheduler(); bool hasOtherRun = false; TestSubsystem requirement;