Skip to content

Commit 7814654

Browse files
ashleyhindlegithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 8054b61 commit 7814654

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Feature/Console/InstallCommandMultiselectTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ public function test_multiselect_behavior_matches_install_command_expectations()
9898
// Verify we get keys that can be used with in_array checks
9999
$this->assertIsArray($result);
100100
$this->assertCount(3, $result); // All 3 selected (2 default + 1 added)
101-
101+
102102
// These are the exact checks used in InstallCommand
103103
$this->assertTrue(in_array('mcp_server', $result, true));
104104
$this->assertTrue(in_array('ai_guidelines', $result, true));
105105
$this->assertTrue(in_array('style_guidelines', $result, true));
106-
106+
107107
// Verify it doesn't contain the display values
108108
$this->assertFalse(in_array('Boost MCP Server', $result, true));
109109
$this->assertFalse(in_array('Package AI Guidelines (i.e. Framework, Inertia, Pest)', $result, true));
110110
}
111-
}
111+
}

0 commit comments

Comments
 (0)