Home
last modified time | relevance | path

Searched refs:normalizeJSON (Results 1 – 3 of 3) sorted by relevance

/dports/devel/gh/cli-2.4.0/pkg/cmd/codespace/
H A Dports.go196 convertedJSON := normalizeJSON(jsonc.ToJSON(contents))
379 func normalizeJSON(j []byte) []byte { func
/dports/sysutils/terraform/terraform-1.0.11/internal/command/
H A Dinit_test.go339 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":"hello","workspace_dir":null}`…
422 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":null,"workspace_dir":null}`; g…
517 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":"hello","workspace_dir":null}`…
600 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":"hello","workspace_dir":null}`…
782 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":"hello","workspace_dir":null}`…
795 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":"hello","workspace_dir":null}`…
826 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":"foo","workspace_dir":null}`; …
853 …if got, want := normalizeJSON(t, state.Backend.ConfigRaw), `{"path":"foo","workspace_dir":null}`; …
H A Dcommand_test.go920 func normalizeJSON(t *testing.T, src []byte) string { func