Remove mutable from attrs signature tests

This commit is contained in:
Alex Ford
2022-10-11 17:55:57 -07:00
parent eaa66b3dbb
commit e15f51ecc1

View File

@@ -359,7 +359,6 @@ def test_dataclass_signature(Script, skip_pre_python37, start, start_params):
'start, start_params', [
['@define\nclass X:', []],
['@frozen\nclass X:', []],
['@mutable\nclass X:', []],
['@define(eq=True)\nclass X:', []],
[dedent('''
class Y():