Skip to content

Commit adae112

Browse files
committed
Couple fixes hit by real tests
Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
1 parent d580925 commit adae112

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@
4444

4545

4646
def skip_helm_charts_tests():
47-
if VARS.VERSION == "" and VARS.OS == "rhel8":
47+
if VARS.VERSION == "5.32" and VARS.OS == "rhel8":
4848
skip(f"Skipping Helm Charts tests for {VARS.VERSION} on {VARS.OS}.")

test/test_container_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_docker_run_usage(self):
2727
) == 0
2828

2929
def test_scl_usage(self):
30-
assert f"v{VARS.VERSION}" in PodmanCLIWrapper.podman_run_command(
30+
assert f"v{VARS.VERSION_NO_FCGID}" in PodmanCLIWrapper.podman_run_command(
3131
f"--rm {VARS.IMAGE_NAME} /bin/bash -c 'perl --version'"
3232
)
3333

test/test_ocp_latest_imagestreams.py

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

99
def setup_method(self):
10-
self.isc = ImageStreamChecker(working_dir=VARS.TEST_DIR / ".." / "..")
10+
self.isc = ImageStreamChecker(working_dir=VARS.TEST_DIR.parent.parent)
1111

1212
def test_latest_imagestream(self):
1313
self.latest_version = self.isc.get_latest_version()

0 commit comments

Comments
 (0)