Skip to content

Commit 27541ec

Browse files
committed
Fix up a merge issue and stray input
1 parent b579386 commit 27541ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

events/codepipeline_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ import (
1010
"github.com/stretchr/testify/assert"
1111
)
1212

13-
func TestCodePipeLineJEventMarshaling(t *testing.T) {
13+
func TestCodePipeLineEventMarshaling(t *testing.T) {
1414

1515
// read json from file
1616
inputJSON, err := ioutil.ReadFile("./testdata/codepipeline-job-event.json")
1717
if err != nil {
1818
t.Errorf("could not open test file. details: %v", err)
1919
}
2020

21-
// de-serialize into CognitoEvent
21+
// de-serialize into CodePipelineEvent
2222
var inputEvent CodePipelineEvent
2323
if err := json.Unmarshal(inputJSON, &inputEvent); err != nil {
2424
t.Errorf("could not unmarshal event. details: %v", err)

0 commit comments

Comments
 (0)