From 7ae7170d6140f7cad730f05f84b53437058b82f4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 29 Apr 2021 21:46:15 +0200 Subject: Everywhere: "file name" => "filename" --- AK/Tests/TestSourceLocation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'AK/Tests') diff --git a/AK/Tests/TestSourceLocation.cpp b/AK/Tests/TestSourceLocation.cpp index 15910062f3..d770751d1d 100644 --- a/AK/Tests/TestSourceLocation.cpp +++ b/AK/Tests/TestSourceLocation.cpp @@ -13,7 +13,7 @@ TEST_CASE(basic_scenario) { auto location = SourceLocation::current(); - EXPECT_EQ(StringView(__FILE__), location.file_name()); + EXPECT_EQ(StringView(__FILE__), location.filename()); EXPECT_EQ(StringView(__FUNCTION__), location.function_name()); EXPECT_EQ(__LINE__ - 3u, location.line_number()); } -- cgit v1.2.3