fix route/cloudfoundry test

This commit is contained in:
Dave Grizzanti 2019-05-10 12:28:32 -04:00
parent 002a85e92a
commit 7a6d233bd7

View File

@ -32,7 +32,7 @@ func TestRouteSource(t *testing.T) {
t.Run("Interface", testRouteSourceImplementsSource)
}
// testRouteSourceImplementsSource tests that routeSource is a valid Source.
// testRouteSourceImplementsSource tests that cloudfoundrySource is a valid Source.
func testRouteSourceImplementsSource(t *testing.T) {
require.Implements(t, (*Source)(nil), new(routeSource))
require.Implements(t, (*Source)(nil), new(cloudfoundrySource))
}