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

Fix rebase-related naming issue #52

Merged
merged 1 commit into from
Jan 21, 2025
Merged
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
6 changes: 3 additions & 3 deletions tests/test_transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from django_setup_configuration.configuration import BaseConfigurationStep
from django_setup_configuration.models import ConfigurationModel
from tests.conftest import TestStep
from tests.conftest import ConfigStep

pytestmark = pytest.mark.django_db

Expand Down Expand Up @@ -50,7 +50,7 @@ def test_runner_rolls_back_all_on_failing_step(
runner_factory, valid_config_object, step_execute_mock
):
runner = runner_factory(
steps=[TransactionTestConfigurationStep, TestStep],
steps=[TransactionTestConfigurationStep, ConfigStep],
object_source=valid_config_object,
)
exc = Exception()
Expand Down Expand Up @@ -83,7 +83,7 @@ def test_runner_rolls_back_on_executing_single_step(
runner_factory, valid_config_object
):
runner = runner_factory(
steps=[TransactionTestConfigurationStep, TestStep],
steps=[TransactionTestConfigurationStep, ConfigStep],
object_source=valid_config_object,
)
with mock.patch("tests.test_transactions.side_effect_test_func") as m:
Expand Down
Loading