summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngus Gratton <angus@redyak.com.au>2025-04-01 11:53:31 +1100
committerDamien George <damien@micropython.org>2025-04-07 16:10:05 +1000
commite9a80fc9a0a13a6afe43973c526ea25b7bcdb9e7 (patch)
treeb6796384b9c1246e84736abdf978e23cfe3ca693
parent57f1e60dd05a58b6d78c72af31ee4d706b1c47a1 (diff)
tests/cpydiff: Remove types_str_endswith.
MicroPython support for this behaviour was added in eb45d97898a. This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton <angus@redyak.com.au>
-rw-r--r--tests/cpydiff/types_str_endswith.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/cpydiff/types_str_endswith.py b/tests/cpydiff/types_str_endswith.py
deleted file mode 100644
index 890c7ba5e..000000000
--- a/tests/cpydiff/types_str_endswith.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""
-categories: Types,str
-description: Start/end indices such as str.endswith(s, start) not implemented
-cause: Unknown
-workaround: Unknown
-"""
-
-print("abc".endswith("c", 1))