Skip to content

Commit 3c12d2a

Browse files
committed
fixup! refactor: bump QPC_MIN_SERVER_VERSION to 2.5.0
1 parent 56521e2 commit 3c12d2a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

qpc/tests/report/test_report_deployments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def test_deployments_old_version(self, caplog, json_file_path):
410410
with pytest.raises(SystemExit):
411411
self.command.main(args)
412412
err_msg = messages.SERVER_TOO_OLD_FOR_CLI % {
413-
"min_version": "0.9.2",
413+
"min_version": QPC_MIN_SERVER_VERSION,
414414
"current_version": "0.0.45",
415415
}
416416
assert err_msg in caplog.text

qpc/tests/report/test_report_details.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ def test_details_old_version(self, caplog, csv_file_path):
398398
with pytest.raises(SystemExit):
399399
self.command.main(args)
400400
err_msg = messages.SERVER_TOO_OLD_FOR_CLI % {
401-
"min_version": "0.9.2",
401+
"min_version": QPC_MIN_SERVER_VERSION,
402402
"current_version": "0.0.45",
403403
}
404404
assert err_msg in caplog.text

qpc/tests/report/test_report_download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def test_download_from_server_with_old_version(self, caplog, fake_tarball):
233233
with pytest.raises(SystemExit):
234234
self.command.main(args)
235235
err_msg = messages.SERVER_TOO_OLD_FOR_CLI % {
236-
"min_version": "0.9.2",
236+
"min_version": QPC_MIN_SERVER_VERSION,
237237
"current_version": "0.0.45",
238238
}
239239
assert err_msg in caplog.text

0 commit comments

Comments
 (0)