From 381b7d098229f07194c66bc9b064737a74be6e8d Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Mon, 12 May 2025 17:50:58 -0700 Subject: [PATCH] re-add list and tuple to property tests --- .../src/types/property_tests/type_generation.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ty_python_semantic/src/types/property_tests/type_generation.rs b/crates/ty_python_semantic/src/types/property_tests/type_generation.rs index 362d603e6b..470f3e0778 100644 --- a/crates/ty_python_semantic/src/types/property_tests/type_generation.rs +++ b/crates/ty_python_semantic/src/types/property_tests/type_generation.rs @@ -220,6 +220,8 @@ fn arbitrary_core_type(g: &mut Gen) -> Ty { Ty::KnownClassInstance(KnownClass::Str), Ty::KnownClassInstance(KnownClass::Int), Ty::KnownClassInstance(KnownClass::Bool), + Ty::KnownClassInstance(KnownClass::List), + Ty::KnownClassInstance(KnownClass::Tuple), Ty::KnownClassInstance(KnownClass::FunctionType), Ty::KnownClassInstance(KnownClass::SpecialForm), Ty::KnownClassInstance(KnownClass::TypeVar),