aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/unit_tests
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 02:00:12 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 02:05:40 +0300
commitbfdf5415b5e025d795a1a7ee89946b00708f50b2 (patch)
tree7838c1f07dd704ef7bef288420e4e0f2f5dbe4b1 /test/unit_tests
parentHandle: is_invalid -> is_valid (diff)
downloadwinapi-common-bfdf5415b5e025d795a1a7ee89946b00708f50b2.tar.gz
winapi-common-bfdf5415b5e025d795a1a7ee89946b00708f50b2.zip
Process: import pdb::Process from winapi-debug
Diffstat (limited to 'test/unit_tests')
-rw-r--r--test/unit_tests/process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit_tests/process.cpp b/test/unit_tests/process.cpp
index a048c84..56a8337 100644
--- a/test/unit_tests/process.cpp
+++ b/test/unit_tests/process.cpp
@@ -25,7 +25,7 @@ using namespace winapi::process;
BOOST_AUTO_TEST_SUITE(process_tests)
BOOST_AUTO_TEST_CASE(get_exe_path) {
- const auto path = Process::get_exe_path();
+ const auto path = Process::current().get_exe_path();
BOOST_TEST_MESSAGE("Executable path: " << path);
}