aboutsummaryrefslogtreecommitdiff
path: root/tests/input/similar4
blob: abdad26db7e22cc8e8d8b5d064f0a448c3101db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
a = (
    (
        [
            "Lines 1-8 used to trigger a similarity warning, but now they don't because...",
            "...lines with only symbols are ignored and don't count in the line count limit."
        ]
    ),
)

"This line in similar4 breaks up the sections of code by being different than similar3"

b = (
    (
        [
            "Lines 12-25 still trigger a similarity...",
            "...warning, because..."
        ],
        [
            "...even after ignoring lines with only symbols..."
        ],
    ),
    (
        "...there are still 5 similar lines in this code block.",
    )
)