Skip to content

Commit

Permalink
Fix test?
Browse files Browse the repository at this point in the history
There seems to be a weird bug on nightly, where Type{Int} doesn't get printed if `fibcall` is defined once.
  • Loading branch information
Zentrik committed Jan 8, 2024
1 parent f63ec8e commit 67fff92
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_codeview_vscode.jl
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ include("test_vscode_example_functions.jl")
@test equal_upto_ordering(first(values(VSCodeServer.inlay_hints[1])), [
TypedSyntax.InlayHint(14, 18, "::Float64", 1)
TypedSyntax.InlayHint(14, 19, "::$Int", 1)
TypedSyntax.InlayHint(15, 11, "::Type{$Int}", 1)
TypedSyntax.InlayHint(15, 13, "::Float64", 1)
TypedSyntax.InlayHint(15, 14, "::$Int", 1)
TypedSyntax.InlayHint(16, 9, "::Float64", 1)
Expand Down Expand Up @@ -250,6 +251,7 @@ include("test_vscode_example_functions.jl")
@test equal_upto_ordering(first(values(VSCodeServer.inlay_hints[1])), [
TypedSyntax.InlayHint(14, 18, "::$Int", 1)
TypedSyntax.InlayHint(14, 19, "::$Int", 1)
TypedSyntax.InlayHint(15, 11, "::Type{$Int}", 1)
TypedSyntax.InlayHint(15, 13, "::$Int", 1)
TypedSyntax.InlayHint(15, 14, "::$Int", 1)
TypedSyntax.InlayHint(16, 9, "::$Int", 1)
Expand Down

0 comments on commit 67fff92

Please sign in to comment.