Skip to content

Commit

Permalink
fix: updating unit tests after ordering change
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejaxon committed May 3, 2024
1 parent da4f14f commit 19ffaf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/linux_system_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ TEST_F(LinuxSystemTest, ProcessesTest) {
const int expectedSize = 4;
auto processes = system_.Processes();
EXPECT_EQ(processes.size(), expectedSize);
EXPECT_EQ(processes[0].Pid(), 1);
EXPECT_EQ(processes[0].User(), "root");
EXPECT_EQ(processes[0].Command(), "/sbin/init");
EXPECT_EQ(processes[0].Pid(), 103);
EXPECT_EQ(processes[0].User(), "foo");
EXPECT_EQ(processes[0].Command(), "/usr/lib/chromium-browser/chromium-browser --type=zygote --ppapi-flash-path=/usr/lib/adobe-fl");
}

TEST_F(LinuxSystemTest, MemoryUtilizationTest) {
Expand Down

0 comments on commit 19ffaf0

Please sign in to comment.