Skip to content

Commit f4b774a

Browse files
test: fix test
1 parent 1eab35b commit f4b774a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/mcpm/commands/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get(name):
4747
if name not in current_config:
4848
console.print(f"[red]Configuration '{name}' not set or not supported.[/]")
4949
return
50-
console.print(f"[green]{name}:[/] {current_config[name]}[/]")
50+
console.print(f"[green]{name}:[/] {current_config[name]}")
5151

5252

5353
@config.command()

tests/test_stash_pop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def test_pop_server_success(windsurf_manager, monkeypatch):
151151
windsurf_manager.add_server.assert_called_once_with(mock_server_config)
152152

153153

154-
def test_pop_server_not_stashed(monkeypatch):
154+
def test_pop_server_not_stashed(windsurf_manager, monkeypatch):
155155
"""Test popping a non-stashed server"""
156156
# Mock client config manager
157157
mock_config_manager = Mock()

0 commit comments

Comments
 (0)