From ca0864eea5f6d19394e1a70240876de9e2dc585b Mon Sep 17 00:00:00 2001 From: Antoine Toulme Date: Thu, 4 Apr 2024 17:49:55 -0700 Subject: [PATCH] remove skip --- confmap/confmap_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/confmap/confmap_test.go b/confmap/confmap_test.go index 661c3fe550a..0e01293f19a 100644 --- a/confmap/confmap_test.go +++ b/confmap/confmap_test.go @@ -775,7 +775,6 @@ func (r *Recursive) Unmarshal(conf *Conf) error { // Tests that a struct can unmarshal itself by creating a new copy of itself, unmarshaling itself, and setting its value. func TestRecursiveUnmarshaling(t *testing.T) { - t.Skip("this test fails to run because it engages in recursive unmarshaling") conf := NewFromStringMap(map[string]any{ "foo": "something", })