summaryrefslogtreecommitdiff
path: root/tests/input/similar3
blob: 337431fe5ba7ac8642fe1cd5a659cd4942e8479f (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 similar3 breaks up the sections of code by being different than similar4"

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.",
    )
)