From 8bf051f257ad98b0219c864609cabb510cccda70 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Sun, 11 Aug 2024 23:11:12 -0300 Subject: [PATCH] Fix Windows tests --- test/module.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/module.jl b/test/module.jl index d44ba844..6d6aa65a 100644 --- a/test/module.jl +++ b/test/module.jl @@ -47,7 +47,7 @@ mod = get_module(tu, f) @test name(mod) == "bar" @test full_name(mod) == "foo.bar" @test full_name(parent_module(mod)) == "foo" -@test toplevel_headers(tu,mod) |> only |> name == h +@test toplevel_headers(tu,mod) |> only |> name |> normpath == h @test is_system(mod) == true @test ast_file(mod) |> name != "" end