Skip to content
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

remove duplicated test_base #432

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fix readthedocs build by updating to v2 configuration schema
* Fix spellcheck erroring out on LICENSE file
* Fix snyk reporting vulnerability due to tornado package use in docs generation
* Deduplicate test_base files in test suite

## [1.24.1] - 2023-09-27

Expand Down
37 changes: 0 additions & 37 deletions test/unit/internal/test_base.py

This file was deleted.

2 changes: 1 addition & 1 deletion test/unit/internal/test_emerge_planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from b2sdk.transfer.outbound.copy_source import CopySource as OrigCopySource
from b2sdk.transfer.outbound.upload_source import UploadSourceStream

from .test_base import TestBase
from ..test_base import TestBase


class UploadSource(UploadSourceStream):
Expand Down
2 changes: 1 addition & 1 deletion test/unit/internal/test_unbound_write_intent.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from b2sdk.transfer.emerge.write_intent import WriteIntent
from b2sdk.utils import hex_sha1_of_bytes

from .test_base import TestBase
from ..test_base import TestBase


class TestIOWrapper(TestBase):
Expand Down