Skip to content

Commit 197f671

Browse files
committed
Fix pylint issue
1 parent 7cb7a8b commit 197f671

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/unit/test_diff.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ def test_order_children_default(backend_a, backend_b):
5555
"""Test that order_children_default is properly called when calling get_children."""
5656

5757
class MyDiff(Diff):
58+
"""custom diff class to test order_children_default."""
59+
5860
@classmethod
5961
def order_children_default(cls, children):
6062
"""Return the children ordered in alphabetical order."""
@@ -73,6 +75,8 @@ def test_order_children_custom(backend_a, backend_b):
7375
"""Test that a custom order_children method is properly called when calling get_children."""
7476

7577
class MyDiff(Diff):
78+
"""custom diff class to test order_children_site."""
79+
7680
@classmethod
7781
def order_children_site(cls, children):
7882
"""Return the site children ordered in reverse-alphabetical order."""

0 commit comments

Comments
 (0)