Skip to content

Commit caed381

Browse files
author
Dimitar Tasev
committed
Fix test expectation
1 parent 002c340 commit caed381

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
],
99
"editor.formatOnSave": true,
1010
"python.formatting.provider": "yapf",
11+
"restructuredtext.confPath": "${workspaceFolder}/docs",
1112
}

mantidimaging/core/utility/test/version_check_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_parse_version_release_candidate_with_commits(self):
3535
parsed = _parse_version("9.9.9rc_2")
3636

3737
assert parsed.version == (9, 9, 9)
38-
assert parsed.commits == 0
38+
assert parsed.commits == 2
3939

4040
def test_version_is_uptodate(self):
4141
for local, remote, is_uptodate in [

0 commit comments

Comments
 (0)