diff options
Diffstat (limited to 'src/gtest')
-rw-r--r-- | src/gtest/trex_stateless_gtest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtest/trex_stateless_gtest.cpp b/src/gtest/trex_stateless_gtest.cpp index 70f397b1..2c55fc39 100644 --- a/src/gtest/trex_stateless_gtest.cpp +++ b/src/gtest/trex_stateless_gtest.cpp @@ -2887,7 +2887,7 @@ TEST_F(basic_stl, graph_generator1) { const TrexStreamsGraphObj *obj = graph.generate(streams); - EXPECT_EQ(obj->get_max_bps(), 405120); + EXPECT_EQ(obj->get_max_bps_l2(), 405120); EXPECT_EQ(obj->get_max_pps(), 50); for (auto stream : streams) { @@ -2939,7 +2939,7 @@ TEST_F(basic_stl, graph_generator2) { const TrexStreamsGraphObj *obj = graph.generate(streams); EXPECT_EQ(obj->get_max_pps(), 1000.0); - EXPECT_EQ(obj->get_max_bps(), (1000 * (128 + 4) * 8)); + EXPECT_EQ(obj->get_max_bps_l2(), (1000 * (128 + 4) * 8)); for (auto stream : streams) { |