We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aed0993 commit 424ee10Copy full SHA for 424ee10
1 file changed
tests/timer_tests.cc
@@ -122,6 +122,7 @@ TEST_P(TimerTestsFixture, TimeShiftTest) {
122
cyclus::Timer ti;
123
cyclus::Context ctx(&ti, &rec);
124
125
+ // Default SimInfo starts in January 2010: year=2010, month=1
126
ti.Initialize(&ctx, cyclus::SimInfo(5));
127
128
int obs = ti.CalcTimeDiff(-1,-1);
@@ -165,7 +166,7 @@ TEST_P(TimerTestsFixture, TimeShiftTest) {
165
166
exp = 7 * cyclusMonth / ctx2.dt();
167
EXPECT_EQ(exp, obs);
168
- // Create and initialize a new timer with a weird non-default timestep
169
+ // Create and initialize a new timer with a weird non-default timestep
170
cyclus::Timer weird_non_default_ti;
171
cyclus::Context ctx3(&weird_non_default_ti, &rec);
172
cyclus::SimInfo weird_timestep(5);
0 commit comments