Skip to content

Commit 10d3c1e

Browse files
Fix TestIntegrationCatalogShow for new catalog format
The catalog show command output format changed from 'playwright:' to 'playwright' (without the colon). Updated the test assertion to match the new format. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent f316d03 commit 10d3c1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ func TestIntegrationCatalogLs(t *testing.T) {
135135
func TestIntegrationCatalogShow(t *testing.T) {
136136
thisIsAnIntegrationTest(t)
137137
out := runDockerMCP(t, "catalog", "show")
138-
assert.Contains(t, out, "playwright:")
138+
assert.Contains(t, out, "playwright")
139139
}
140140

141141
func TestIntegrationDryRunEmpty(t *testing.T) {

0 commit comments

Comments
 (0)