summaryrefslogtreecommitdiff
path: root/tests/test_xpath_parse.cpp
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-22 20:33:02 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-22 20:33:02 -0700
commit4b371e10eed49d25bf4240a6aaa321b084e586ea (patch)
treecb00ecd69d6c43cd9e8e4e9ad2bb84acf92745c4 /tests/test_xpath_parse.cpp
parent853333cd709cc063e4f97418c1297f9c83e48d41 (diff)
tests: Remove redundant pugi:: qualifier
Most tests have `using namespace pugi` which makes explicit qualifications unnecessary.
Diffstat (limited to 'tests/test_xpath_parse.cpp')
-rw-r--r--tests/test_xpath_parse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_xpath_parse.cpp b/tests/test_xpath_parse.cpp
index 8819a5d..0672c5a 100644
--- a/tests/test_xpath_parse.cpp
+++ b/tests/test_xpath_parse.cpp
@@ -222,7 +222,7 @@ TEST(xpath_parse_paths_valid_unicode)
#if defined(PUGIXML_WCHAR_MODE)
xpath_query q(paths[i]);
#elif !defined(PUGIXML_NO_STL)
- std::basic_string<char> path_utf8 = pugi::as_utf8(paths[i]);
+ std::basic_string<char> path_utf8 = as_utf8(paths[i]);
xpath_query q(path_utf8.c_str());
#endif
}