Skip to content

Commit

Permalink
Update comments in test
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Nov 11, 2024
1 parent 51f7f08 commit 3791e39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_zos_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_list_members_should_return_a_list_of_members(self):
self.assertIsInstance(command_output, MemberListResponse)

def test_get_content_should_return_content_from_dataset(self):
"""Executing gget_content should return content from dataset."""
"""Executing get_content should return content from dataset."""
command_output = self.files.ds.get_content(self.test_member_jcl)
self.assertIsInstance(command_output, str)

Expand All @@ -85,7 +85,7 @@ def test_get_binary_content_should_return_response_content(self):
self.assertIsInstance(command_output, bytes)

def test_get_file_content_streamed_should_return_response_content(self):
"""Executing get_binary_content should return response object from the server."""
"""Executing get_content_streamed should return response object from the server."""
command_output = self.files.uss.get_content_streamed(self.files_fixtures["TEST_USS"])
self.assertIsInstance(command_output.raw, urllib3.response.HTTPResponse)

Expand Down

0 comments on commit 3791e39

Please sign in to comment.