Unverified Commit 8acf0d16 authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Use different string formatting option

parent d69a79f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ class BaseInteractiveToolsIntegrationTestCase(ContainerizedIntegrationTestCase):
            if len(entry_points) != expected_num:
                return None
            elif any(not e["active"] for e in entry_points):
                job_json = self._get("jobs/%s?full=true" % job_id).json()
                job_json = self._get("jobs/{}?full=true".format(job_id)).json()
                if job_json['state'] == 'error':
                    raise Exception("Interactive tool job {} failed: {}".format(job_id, job_json))
                return None