diff --git a/test-data/unit/check-narrowing.test b/test-data/unit/check-narrowing.test index 6febe253d316..47ad62248fe0 100644 --- a/test-data/unit/check-narrowing.test +++ b/test-data/unit/check-narrowing.test @@ -2436,7 +2436,7 @@ y = None for x in xs: if x is not None: if y is None: - y = {} # E: Need type annotation for "y" (hint: "y: Dict[, ] = ...") + y = {} # E: Need type annotation for "y" (hint: "y: dict[, ] = ...") [builtins fixtures/list.pyi]