From 0de23c96e023bbc331cb7836f21ae108441dc056 Mon Sep 17 00:00:00 2001 From: Olamide Ojo Date: Mon, 21 Oct 2024 11:14:15 +0100 Subject: [PATCH] remove deprecated methods --- tests/integration/test_zos_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_zos_files.py b/tests/integration/test_zos_files.py index 29752582..2d03fe25 100644 --- a/tests/integration/test_zos_files.py +++ b/tests/integration/test_zos_files.py @@ -153,7 +153,7 @@ def test_upload_download_delete_dataset(self): os.unlink(SAMPLE_JCL_FIXTURE_PATH + ".tmp") def test_upload_download_delete_uss(self): - self.files.upload_file_to_uss(SAMPLE_JCL_FIXTURE_PATH, self.test_uss_upload) + self.USSFiles.upload(SAMPLE_JCL_FIXTURE_PATH, self.test_uss_upload) self.files.download_uss(self.test_uss_upload, SAMPLE_JCL_FIXTURE_PATH + ".tmp") with open(SAMPLE_JCL_FIXTURE_PATH, "r") as in_file: old_file_content = in_file.read()