From b4de1e3a724b1c5656ec688fdeaf701d4514f922 Mon Sep 17 00:00:00 2001 From: Mattia Montanari Date: Tue, 14 Feb 2023 14:14:37 +0100 Subject: [PATCH] undo breaking change --- examples/go/openGJK/connector_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/go/openGJK/connector_test.go b/examples/go/openGJK/connector_test.go index e423880..2feaf96 100644 --- a/examples/go/openGJK/connector_test.go +++ b/examples/go/openGJK/connector_test.go @@ -27,7 +27,7 @@ func TestGJK(t *testing.T) { {5.0, 0.5, 0.0}, {5.0, -0.5, 0.0}, } - fassert(t, GJK(a, b), 1) + fassert(t, GJK(a, b), 0) fassert(t, GJK(b, c), 1) fassert(t, GJK(a, c), 2) }