Skip to content

Commit 5fb86df

Browse files
committed
Fix using test utils
Signed-off-by: Raasz, Pawel <[email protected]>
1 parent 410c0cb commit 5fb86df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/test_utils/common_test_utils/tests/file_util_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,8 +678,8 @@ TEST_P(FileUtilTestP, create_directories) {
678678

679679
ov::util::create_directory_recursive(path);
680680

681-
EXPECT_TRUE(utils::fileExists(path));
681+
EXPECT_TRUE(utils::fileExists(path.string()));
682682
EXPECT_EQ(utils::removeDir(path.string()), 0);
683-
EXPECT_FALSE(utils::fileExists(path));
683+
EXPECT_FALSE(utils::fileExists(path.string()));
684684
}
685685
} // namespace ov::test

0 commit comments

Comments
 (0)