diff options
Diffstat (limited to 'test/dijkstra.cpp')
-rw-r--r-- | test/dijkstra.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dijkstra.cpp b/test/dijkstra.cpp index b09d7fd5..d5412559 100644 --- a/test/dijkstra.cpp +++ b/test/dijkstra.cpp @@ -59,7 +59,7 @@ void test_app::test_dijkstra() auto result = run(debug); fm_assert(!result.is_found()); - fm_assert(!result.path().empty()); + fm_assert(!result.path().isEmpty()); fm_assert(result.size() > 4); fm_assert(result.cost() > 1000); fm_assert(result.cost() < 3000); @@ -74,7 +74,7 @@ void test_app::test_dijkstra() auto result = run(debug); fm_assert(result.is_found()); - fm_assert(!result.path().empty()); + fm_assert(!result.path().isEmpty()); fm_assert(result.size() > 4); fm_assert(result.cost() > 1000); fm_assert(result.cost() < 3000); |