From bd7a35613510aa7543549ab26a8f3ede0ae8b3a3 Mon Sep 17 00:00:00 2001 From: amyeroberts <22614925+amyeroberts@users.noreply.github.com> Date: Tue, 19 Dec 2023 13:55:09 +0000 Subject: [PATCH] Update split string in doctest to reflect #28087 (#28135) --- tests/utils/test_doc_samples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils/test_doc_samples.py b/tests/utils/test_doc_samples.py index 9536545378..30f957774b 100644 --- a/tests/utils/test_doc_samples.py +++ b/tests/utils/test_doc_samples.py @@ -60,7 +60,7 @@ class TestDocLists(unittest.TestCase): doctext = f.read() doctext = doctext.split( - "For now, Transformers supports inference and training through SDPA for the following architectures:" + "For now, Transformers supports SDPA inference and training for the following architectures:" )[1] doctext = doctext.split("Note that FlashAttention can only be used for models using the")[0]