Skip to content

Commit e950eb9

Browse files
authored
Fix broken test (#62)
Caused by a merge race with python/typeshed#8792
1 parent 40e818e commit e950eb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_integration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ def test_recursive_verify_single() -> None:
133133
m = read_metadata(TYPESHED, "six")
134134
assert recursive_verify(m, TYPESHED) == {"types-six"}
135135

136-
m = read_metadata(TYPESHED, "boto")
137-
assert recursive_verify(m, TYPESHED) == {"types-boto", "types-six"}
136+
m = read_metadata(TYPESHED, "tzlocal")
137+
assert recursive_verify(m, TYPESHED) == {"types-tzlocal", "types-pytz"}
138138

139139

140140
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)