Skip to content

Commit 8856b48

Browse files
Update tests
1 parent aca0235 commit 8856b48

1 file changed

Lines changed: 1 addition & 18 deletions

File tree

tests/usethis/test_tool.py

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def test_some_deps(self, uv_init_dir: Path):
163163
with change_cwd(uv_init_dir):
164164
add_deps_to_group(
165165
[
166-
Dependency(name="isort"),
166+
Dependency(name="black"),
167167
],
168168
"eggs",
169169
)
@@ -174,23 +174,6 @@ def test_some_deps(self, uv_init_dir: Path):
174174
# Assert
175175
assert result
176176

177-
@pytest.mark.usefixtures("_vary_network_conn")
178-
def test_non_managed_deps(self, uv_init_dir: Path):
179-
# Arrange
180-
tool = MyTool()
181-
with change_cwd(uv_init_dir):
182-
add_deps_to_group(
183-
[
184-
Dependency(name="black"),
185-
],
186-
"eggs",
187-
)
188-
# Act
189-
result = tool.is_used()
190-
191-
# Assert
192-
assert not result
193-
194177
def test_files(self, uv_init_dir: Path):
195178
# Arrange
196179
tool = MyTool()

0 commit comments

Comments
 (0)