Thanks to visit codestin.com
Credit goes to github.com

Skip to content

TestOsOpsCommon is added [generic os_ops tests] #231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prev Previous commit
Next Next commit
TestOsOpsCommon is updated [comments]
  • Loading branch information
dmitry-lipetsk committed Apr 2, 2025
commit 7680405879ffe77d56ab15535eb1cab6bf146776
8 changes: 4 additions & 4 deletions tests/test_os_ops_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def test_read__binary(self, os_ops: OsOperations):

def test_read__binary_and_encoding(self, os_ops: OsOperations):
"""
Test RemoteOperations::read for binary data and encoding.
Test OsOperations::read for binary data and encoding.
"""
assert isinstance(os_ops, OsOperations)

Expand All @@ -416,7 +416,7 @@ def test_read__binary_and_encoding(self, os_ops: OsOperations):

def test_read_binary__spec(self, os_ops: OsOperations):
"""
Test RemoteOperations::read_binary.
Test OsOperations::read_binary.
"""
assert isinstance(os_ops, OsOperations)

Expand Down Expand Up @@ -452,7 +452,7 @@ def test_read_binary__spec(self, os_ops: OsOperations):

def test_read_binary__spec__negative_offset(self, os_ops: OsOperations):
"""
Test RemoteOperations::read_binary with negative offset.
Test OsOperations::read_binary with negative offset.
"""
assert isinstance(os_ops, OsOperations)

Expand All @@ -463,7 +463,7 @@ def test_read_binary__spec__negative_offset(self, os_ops: OsOperations):

def test_get_file_size(self, os_ops: OsOperations):
"""
Test RemoteOperations::get_file_size.
Test OsOperations::get_file_size.
"""
assert isinstance(os_ops, OsOperations)

Expand Down