[Test] Fix unused variable warning

This commit is contained in:
Ray Speth
2023-08-15 14:21:04 -04:00
committed by Ray Speth
parent 4a4bc87f0e
commit 43fca53547
-2
View File
@@ -27,12 +27,10 @@ TEST(zerodim, simple)
network.initialize();
double t = 0.0;
int count = 0;
while (t < 0.1) {
ASSERT_GE(cppReactor.temperature(), T);
t = network.time() + 5e-3;
network.advance(t);
count++;
}
}