Skip to content
Snippets Groups Projects
Commit d57bd657 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Fix micro/milli seconds mismatch

parent 41bf1c0b
No related branches found
No related tags found
No related merge requests found
......@@ -43,11 +43,11 @@ BOOST_AUTO_TEST_CASE(test_entity)
std::vector<armem::Time> expectedTimestamps;
armem::wm::EntitySnapshot snapshot;
snapshot.time() = armem::Time(armem::Duration::MicroSeconds(100));
snapshot.time() = armem::Time(armem::Duration::MilliSeconds(100));
expectedTimestamps.push_back(snapshot.time());
entity.addSnapshot(snapshot);
snapshot.time() = armem::Time(armem::Duration::MicroSeconds(300));
snapshot.time() = armem::Time(armem::Duration::MilliSeconds(300));
expectedTimestamps.push_back(snapshot.time());
entity.addSnapshot(snapshot);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment