Skip to content

Commit

Permalink
Fix issues with test program
Browse files Browse the repository at this point in the history
DoubleSolenoid was double allocated
negative PID gain
  • Loading branch information
sciencewhiz committed Dec 29, 2023
1 parent c0b816b commit 0631128
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/robotbuilder/exporters/CppExportTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void setUp() {
public void tearDown() {
System.gc();
File project = new File("build/test-resources/" + PROJECT_DIRECTORY);
TestUtils.delete(project);
//TestUtils.delete(project);
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/robotbuilder/exporters/JavaExportTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void setUp() {
public void tearDown() {
System.gc();
File project = new File("build/test-resources/" + PROJECT_DIRECTORY);
TestUtils.delete(project);
//TestUtils.delete(project);
}

@Test
Expand Down

0 comments on commit 0631128

Please sign in to comment.