Skip to content

Commit

Permalink
Fix typo in PR #2773 (#2777)
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
  • Loading branch information
bogdandrutu committed Mar 24, 2021
1 parent a65a5a6 commit 9de400c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 4 additions & 1 deletion service/defaultcomponents/default_exporters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,11 @@ func TestDefaultExporters(t *testing.T) {
assert.Equal(t, tt.exporter, factory.CreateDefaultConfig().Type())

if tt.skipLifecycle {
verifyExporterLifecycle(t, factory, tt.getConfigFn)
t.Log("Skipping lifecycle test", tt.exporter)
return
}

verifyExporterLifecycle(t, factory, tt.getConfigFn)
})
}
}
Expand Down
5 changes: 3 additions & 2 deletions service/defaultcomponents/default_receivers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ func TestDefaultReceivers(t *testing.T) {

if tt.skipLifecyle {
t.Log("Skipping lifecycle test", tt.receiver)
} else {
verifyReceiverLifecycle(t, factory, tt.getConfigFn)
return
}

verifyReceiverLifecycle(t, factory, tt.getConfigFn)
})
}
}
Expand Down

0 comments on commit 9de400c

Please sign in to comment.