Skip to content

Commit 38675aa

Browse files
committed
unittest: Run ruff format over unittest.
Rather than have this change be pulled into an unrelated commit, I split out all of the changes introduced by running `ruff format` over the unittest codebase. Signed-off-by: Greg Darke <micropython@me.tsukasa.au>
1 parent a1a9e57 commit 38675aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python-stdlib/unittest/tests/test_assertions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def testFalse(self):
9292
with self.assertRaises(AssertionError):
9393
self.assertFalse(True)
9494

95-
def testIn(self): # codespell:ignore
95+
def testIn(self): # codespell:ignore
9696
self.assertIn("t", "cat")
9797
with self.assertRaises(AssertionError):
9898
self.assertIn("x", "cat")

0 commit comments

Comments
 (0)