Skip to content

Commit

Permalink
Match the new default level in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Nov 18, 2024
1 parent 6aa2bf6 commit 3e71da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/utilities_tests/logger_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ TEST_F(LoggerTest, DefaultLevel)
cudf::default_logger().warn("warn");
cudf::default_logger().error("error");
cudf::default_logger().critical("critical");
ASSERT_EQ(this->sink_content(), "warn\nerror\ncritical\n");
ASSERT_EQ(this->sink_content(), "info\nwarn\nerror\ncritical\n");
}

TEST_F(LoggerTest, CustomLevel)
Expand Down

0 comments on commit 3e71da1

Please sign in to comment.