Browse Source

Fixed unit test.

Branimir Karadžić 8 years ago
parent
commit
b91094c1f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/filepath_test.cpp

+ 1 - 1
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() ) );
 }