Skip to content

Commit 1937748

Browse files
committed
.
1 parent 85979af commit 1937748

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_collections.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2425,9 +2425,9 @@ def test_gt(self):
24252425
self.assertFalse(Counter(a=2, b=1, c=0) > Counter('aab'))
24262426

24272427
def test_symmetric_difference(self):
2428-
pop = (-4, -3, -2, -1, 0, 1, 2, 3, 4)
2428+
population = (-4, -3, -2, -1, 0, 1, 2, 3, 4)
24292429

2430-
for a, b1, b2, c in product(pop, repeat=4):
2430+
for a, b1, b2, c in product(population, repeat=4):
24312431
p = Counter(a=a, b=b1)
24322432
q = Counter(b=b2, c=c)
24332433
r = p ^ q

0 commit comments

Comments
 (0)