1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Used more augmented assignment statements.

Identified using the following command:

$ git grep -I '\(\<[_a-zA-Z0-9]\+\>\) *= *\1 *[-+/*^%&|<>@]'
This commit is contained in:
Nick Pope
2022-01-28 20:15:53 +00:00
committed by Mariusz Felisiak
parent a320aab512
commit d3cb91db87
28 changed files with 47 additions and 50 deletions

View File

@@ -1908,11 +1908,9 @@ class SeleniumTests(AdminSeleniumTestCase):
"border-top-%s",
]
for prop in border_properties:
prop = prop % "width"
self.assertEqual(element.value_of_css_property(prop), width)
self.assertEqual(element.value_of_css_property(prop % "width"), width)
for prop in border_properties:
prop = prop % "style"
self.assertEqual(element.value_of_css_property(prop), style)
self.assertEqual(element.value_of_css_property(prop % "style"), style)
# Convert hex color to rgb.
self.assertRegex(color, "#[0-9a-f]{6}")
r, g, b = int(color[1:3], 16), int(color[3:5], 16), int(color[5:], 16)
@@ -1923,8 +1921,7 @@ class SeleniumTests(AdminSeleniumTestCase):
"rgba(%d, %d, %d, 1)" % (r, g, b),
]
for prop in border_properties:
prop = prop % "color"
self.assertIn(element.value_of_css_property(prop), colors)
self.assertIn(element.value_of_css_property(prop % "color"), colors)
def test_inline_formset_error_input_border(self):
from selenium.webdriver.common.by import By