We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a36e50 commit 6b3833cCopy full SHA for 6b3833c
tests/test_fmtstr.py
@@ -557,8 +557,7 @@ def test_no_hanging_space(self) -> None:
557
def test_assignment_working(self) -> None:
558
t = FSArray(10, 10)
559
t[2, 2] = "a"
560
- # TODO: is this supposed to check something?
561
- t[2, 2] == "a"
+ self.assertEqual(t[2, 2], ["a"])
562
563
def test_normalize_slice(self) -> None:
564
class SliceBuilder:
0 commit comments