Skip to content

Commit dd7c891

Browse files
committed
ci: fix some windows tests
1 parent 32dd9e8 commit dd7c891

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Install/Mcp/FileWriter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ protected function injectNewConfigKey(string $content): bool
187187
protected function generateServerJson(string $key, array $serverConfig, int $baseIndent = 0): string
188188
{
189189
$json = json_encode($serverConfig, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
190-
190+
191191
// Normalize line endings to Unix style
192192
$json = str_replace("\r\n", "\n", $json);
193193

@@ -382,7 +382,7 @@ protected function addServersToConfig(array &$config): void
382382
protected function writeJsonConfig(array $config): bool
383383
{
384384
$json = json_encode($config, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
385-
385+
386386
// Normalize line endings to Unix style
387387
if ($json) {
388388
$json = str_replace("\r\n", "\n", $json);

tests/Feature/Console/InstallCommandMultiselectTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@
8989
// Verify it doesn't contain the display values
9090
expect(in_array('Boost MCP Server', $result, true))->toBeFalse();
9191
expect(in_array('Package AI Guidelines (i.e. Framework, Inertia, Pest)', $result, true))->toBeFalse();
92-
})->skipOnWindows();
92+
})->skipOnWindows();

0 commit comments

Comments
 (0)