From e2ddb1674efc4100a5918fb55563e9d9ddd0a5d6 Mon Sep 17 00:00:00 2001 From: David Spickett Date: Mon, 24 Nov 2025 13:56:20 +0000 Subject: [PATCH] [llvm][utils][lit] Fix imports in ManyTests.py example Fixes #169297 --- llvm/utils/lit/examples/many-tests/ManyTests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/utils/lit/examples/many-tests/ManyTests.py b/llvm/utils/lit/examples/many-tests/ManyTests.py index 89e818a037c39..ffdbbad5a77b1 100644 --- a/llvm/utils/lit/examples/many-tests/ManyTests.py +++ b/llvm/utils/lit/examples/many-tests/ManyTests.py @@ -1,4 +1,5 @@ -from lit import Test, TestFormat +from lit import Test +from lit.formats import TestFormat class ManyTests(TestFormat):