We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a44f4b commit 9ec2022Copy full SHA for 9ec2022
1 file changed
tests/test_proxy.py
@@ -126,7 +126,7 @@ class Meta:
126
eek = "boo!"
127
128
@pytest.mark.parametrize(
129
- "attr, actual",
+ "attr, expected",
130
(
131
("key_field_names", ("isbn",)),
132
("verbose_name", "Book Summary"),
@@ -135,9 +135,9 @@ class Meta:
135
("name_space", "the.other.library"),
136
),
137
)
138
- def test_options(self, attr, actual):
+ def test_options(self, attr, expected):
139
target = getmeta(BookProxy)
140
- assert actual == getattr(target, attr)
+ assert getattr(target, attr) == expected
141
142
143
class TestResourceProxy:
0 commit comments