(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func GitHubReleaseBundle(t *testing.T) *bundle.Bundle { |
| 27 | b := &bundle.Bundle{} |
| 28 | err := b.UnmarshalJSON(GitHubReleaseBundleRaw) |
| 29 | if err != nil { |
| 30 | t.Fatalf("failed to unmarshal GitHub release bundle: %v", err) |
| 31 | } |
| 32 | return b |
| 33 | } |
no outgoing calls