Skip to content
This repository was archived by the owner on Nov 14, 2022. It is now read-only.

Commit 84aef69

Browse files
committed
Increment version + move other minor change to seperate PR
1 parent dc0df7a commit 84aef69

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

autoreduce_qp/model/database/tests/test_access.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ def test_get_experiment(self):
7777
Test: The correct Experiment record is returned
7878
When: get_status is called on a database containing expected Experiment reference number
7979
"""
80-
actual = access.get_experiment(123)
80+
actual = access.get_experiment('123')
8181
self.assertIsNotNone(actual)
82-
self.assertEqual(123, actual.reference_number)
82+
self.assertEqual(str(123), str(actual.reference_number))
8383

8484
def test_get_experiment_create(self):
8585
"""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name="autoreduce_qp",
10-
version="22.0.0.dev32", # when updating the version here make sure to also update qp_mantid_python36.D
10+
version="22.0.0.dev33", # when updating the version here make sure to also update qp_mantid_python36.D
1111
description="ISIS Autoreduction queue processor",
1212
author="ISIS Autoreduction Team",
1313
url="https://github.com/autoreduction/autoreduce/",

0 commit comments

Comments
 (0)