Skip to content

Commit

Permalink
test in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jpogran committed Nov 15, 2024
1 parent a410fd2 commit a913ef0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions internal/langserver/handlers/initialize_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,12 @@ func TestInitialize_differentWorkspaceLayouts(t *testing.T) {
t.Fatal(err)
}
if len(allModules) != len(tc.expectedModules) {
for _, mods := range tc.expectedModules {
t.Logf("expected module: %s", mods)
}
for _, mods := range allModules {
t.Logf("got module: %s", mods.Path())
}
t.Fatalf("expected %d modules, got %d", len(tc.expectedModules), len(allModules))
}
for _, path := range tc.expectedModules {
Expand Down

0 comments on commit a913ef0

Please sign in to comment.