Unverified Commit 4d568234 authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Add missing comma

... how could this test ever have passed ?
parent 47826819
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -323,7 +323,7 @@ class BaseKubernetesIntegrationTestCase(BaseJobEnvironmentIntegrationTestCase, M
        self._wait_for_external_state(sa_session=sa_session, job=job, expected=app.model.Job.states.RUNNING)

        external_id = job.job_runner_external_id
        output = unicodify(subprocess.check_output(["kubectl", "logs", "-l" f"job-name={external_id}"]))
        output = unicodify(subprocess.check_output(["kubectl", "logs", "-l", f"job-name={external_id}"]))
        EXPECTED_STDOUT = "The bool is not true"
        EXPECTED_STDERR = "The bool is very not true"
        assert EXPECTED_STDOUT in output