From b32d8fe7f566017505a99aa2d4958c085796e580 Mon Sep 17 00:00:00 2001
From: Thomas Kluyver <thomas@kluyver.me.uk>
Date: Mon, 5 Jul 2021 15:24:26 +0100
Subject: [PATCH] Fix test for finalize joblist

---
 tests/test_xfel_calibrate/conftest.py | 2 +-
 tests/test_xfel_calibrate/test_cli.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_xfel_calibrate/conftest.py b/tests/test_xfel_calibrate/conftest.py
index 61fb9c6f1..2920104b4 100644
--- a/tests/test_xfel_calibrate/conftest.py
+++ b/tests/test_xfel_calibrate/conftest.py
@@ -37,7 +37,7 @@ class FakeProcessCalibrate(FakeProcess):
         self.register_subprocess(settings.free_nodes_cmd, stdout=["1"])
         self.register_subprocess(settings.preempt_nodes_cmd, stdout=["1"])
         self.register_subprocess(
-            ["sbatch", self.any()], stdout=["Submitted batch job 000000"]
+            ["sbatch", self.any()], stdout=["000000"]
         )
 
         #  For the version insertion...
diff --git a/tests/test_xfel_calibrate/test_cli.py b/tests/test_xfel_calibrate/test_cli.py
index 39697e8e7..ed02de5e7 100644
--- a/tests/test_xfel_calibrate/test_cli.py
+++ b/tests/test_xfel_calibrate/test_cli.py
@@ -209,7 +209,7 @@ class TestTutorialNotebook:
         today = date.today()
 
         expected_equals = {
-            "joblist": [],
+            "joblist": ["000000"],
             "project": "Tutorial Calculation",
             "calibration": "Tutorial Calculation",
             "author": "Astrid Muennich",
-- 
GitLab