From 42b920f45093be9d4de31418f393bd697f48f87f Mon Sep 17 00:00:00 2001 From: PatrickHaecker <152268010+PatrickHaecker@users.noreply.github.com> Date: Tue, 19 May 2026 12:06:10 +0200 Subject: [PATCH 1/2] Remove unnecessary whitespace in runtests.jl Clean-up --- test/runtests.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index bc41fe8..470067f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -6,7 +6,6 @@ using Test const testdir = dirname(@__FILE__) - @testset "StaticGraphs" begin hu = loadgraph(joinpath(testdir, "testdata", "house-uint8.jsg"), SGFormat()) From 6d27fa6524ff0b0dbe39f617564d7bd4b288f662 Mon Sep 17 00:00:00 2001 From: PatrickHaecker <152268010+PatrickHaecker@users.noreply.github.com> Date: Tue, 19 May 2026 12:08:24 +0200 Subject: [PATCH 2/2] Remove more trailing whitespaces --- test/runtests.jl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 470067f..1d54518 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -23,9 +23,9 @@ const testdir = dirname(@__FILE__) @test sprint(show, sg) == "{5, 6} undirected simple static {UInt8, UInt8} graph" @test sprint(show, sgu) == "{5, 6} undirected simple static {UInt8, UInt8} graph" testfn(fn, args...) = - @inferred(fn(hu, args...)) == - @inferred(fn(sg, args...)) == - @inferred(fn(sgu, args...)) == + @inferred(fn(hu, args...)) == + @inferred(fn(sg, args...)) == + @inferred(fn(sgu, args...)) == fn(g, args...) @test hu == sg == sgu @@ -86,9 +86,9 @@ const testdir = dirname(@__FILE__) dhu = loadgraph(joinpath(testdir, "testdata", "pathdg-uint8.jsg"), SDGFormat()) dtestfn(fn, args...) = - @inferred(fn(dhu, args...)) == - @inferred(fn(dsg, args...)) == - @inferred(fn(dsgu, args...)) == + @inferred(fn(dhu, args...)) == + @inferred(fn(dsg, args...)) == + @inferred(fn(dsgu, args...)) == fn(dg, args...) @test dhu == dsg == dsgu