From b91094c1f8fad772e13c34a36e53c401d7d9badd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Wed, 23 Aug 2017 22:45:52 -0700 Subject: [PATCH] Fixed unit test. --- tests/filepath_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/filepath_test.cpp b/tests/filepath_test.cpp index 7be97f7..41bdd24 100644 --- a/tests/filepath_test.cpp +++ b/tests/filepath_test.cpp @@ -120,5 +120,5 @@ TEST_CASE("FilePath", "") TEST_CASE("FilePath temp", "") { bx::FilePath tmp(bx::TempDir::Tag); - REQUIRE(0 != bx::strCmp(".", tmp.getPath() ) ); + REQUIRE(0 != bx::strCmp(".", tmp.getPath().getPtr() ) ); }