Skip to content

Commit 2f7f9df

Browse files
committed
Fixes CI
1 parent 57d10d0 commit 2f7f9df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_context/test_requires_context/test_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ def test_protocols(container, protocol):
2424
def test_context_immutable():
2525
"""Ensures that RequiresContext container supports ``.map()`` method."""
2626
with pytest.raises(ImmutableStateError):
27-
Context().a = 1
27+
Context().abc = 1

tests/test_context/test_requires_context_result/test_context_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ def test_protocols(container, protocol):
3838
def test_context_result_immutable():
3939
"""Ensures that RequiresContext container supports ``.map()`` method."""
4040
with pytest.raises(ImmutableStateError):
41-
ContextResult().a = 1
41+
ContextResult().abc = 1

0 commit comments

Comments
 (0)