diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-04 15:18:32 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-04 15:18:32 +0100 |
| commit | a65aaeb43df61a9127aed0c4eb8dd4cb0b3b0bd6 (patch) | |
| tree | 020f69f766545fa6fc960b3fdfcb4a7cda20313d /test/dijkstra.cpp | |
| parent | 7fa7b3bc844d61ecc986f77819a11d1e4a526c57 (diff) | |
b
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); |
