Skip to content

Commit 3fd4957

Browse files
committed
Fix swerve healthcheck tests
1 parent 2df47a2 commit 3fd4957

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
}
1212

1313
group = "org.strykeforce"
14-
version = "23.1.2"
14+
version = "23.1.3"
1515

1616
sourceCompatibility = JavaVersion.VERSION_17
1717
targetCompatibility = JavaVersion.VERSION_17

src/test/java/org/strykeforce/healthcheck/HealthCheckCommandTest.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import org.junit.jupiter.api.Test
77

88
internal class HealthCheckCommandTest {
99

10-
// @Test
11-
// fun `constructor adds subsystems to requirements`() {
12-
// val subsystems = setOf(AlphaSubsystem(), BetaSubsystem(), GammaSubsystem())
13-
// val command = HealthCheckCommand(*subsystems.toTypedArray())
14-
// assertEquals(subsystems, command.requirements)
15-
// }
10+
@Test
11+
fun `constructor adds subsystems to requirements`() {
12+
val subsystems = setOf(AlphaSubsystem(), BetaSubsystem(), GammaSubsystem())
13+
val command = HealthCheckCommand(*subsystems.toTypedArray())
14+
assertEquals(subsystems, command.requirements)
15+
}
1616
}
1717

1818
internal class AlphaSubsystem : Subsystem

0 commit comments

Comments
 (0)