remove NULL option for reset_timestep

This commit is contained in:
Axel Kohlmeyer
2022-05-04 16:21:06 -04:00
parent 81bb4bfc23
commit ba3aa8fab5
3 changed files with 4 additions and 14 deletions

View File

@ -241,13 +241,6 @@ TEST_F(SimpleCommandsTest, ResetTimestep)
ASSERT_EQ(lmp->update->atimestep, 0);
ASSERT_DOUBLE_EQ(lmp->update->atime, 0.0);
BEGIN_HIDE_OUTPUT();
command("reset_timestep NULL time 10.0");
END_HIDE_OUTPUT();
ASSERT_EQ(lmp->update->ntimestep, 0);
ASSERT_EQ(lmp->update->atimestep, 0);
ASSERT_DOUBLE_EQ(lmp->update->atime, 10.0);
BEGIN_HIDE_OUTPUT();
command("reset_timestep 10 time 100.0");
END_HIDE_OUTPUT();