Commit 74732cf0 authored by Rayan Syed's avatar Rayan Syed
Browse files

fixed bug in problem 2 tests

parent c6ec1c7b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -72,10 +72,10 @@ bool test_0() {
                "true", "false");
        }

        if (chosen.size() != 3) {
        if (chosen.empty()) {
            return failExample(T,
                "K4 example should return 3 vertices in the planar induced subgraph",
                "3", to_string(chosen.size()));
                "maxPlanarSubgraph(K4) should return a non-empty vertex set",
                "non-empty", "empty");
        }
    }