From 0fc42c8834783cc79e00d0c3c46a9d7287b7ccbc Mon Sep 17 00:00:00 2001 From: Fabian Meumertzheim Date: Sat, 18 Jun 2022 02:29:54 +0200 Subject: [PATCH] Fix failing open hermeticity test (#3206) Due to an incorrect JSON field name used in a test helper, the test did not fail when a target is built in two configurations that differ in rules_go settings. --- tests/core/transition/hermeticity_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/transition/hermeticity_test.go b/tests/core/transition/hermeticity_test.go index 136d5fdb4..254fefaa0 100644 --- a/tests/core/transition/hermeticity_test.go +++ b/tests/core/transition/hermeticity_test.go @@ -277,7 +277,7 @@ type bazelConfigOutput struct { Fragments []struct { Name string `json:"name"` Options map[string]string `json:"options"` - } `json:"fragments"` + } `json:"fragmentOptions"` } type bazelCqueryOutput struct {