Commit 8e6278fa authored by Rayan Syed's avatar Rayan Syed
Browse files

Merge branch 'problem2bug' into 'master'

fixed bug in problem 2 tests

See merge request configs/ec330/homeworks/homeworksix!3
parents c6ec1c7b 74732cf0
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");
        }
    }