Repository: kafka Updated Branches: refs/heads/trunk e1d32bdff -> a58b459bd
KAFKA-2676: Fix incorrect package name in tests Also fixed a couple of other tests with the same issue. This is my original work and I license the work to the project under the project's open source license Author: Kim Christensen <[email protected]> Reviewers: Ismael Juma Closes #828 from kichristensen/KAFKA-2676 Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/a58b459b Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/a58b459b Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/a58b459b Branch: refs/heads/trunk Commit: a58b459bddd5b1dcab224b53cda0196e947a5b09 Parents: e1d32bd Author: Kim Christensen <[email protected]> Authored: Fri Jan 29 09:29:09 2016 -0800 Committer: Guozhang Wang <[email protected]> Committed: Fri Jan 29 09:29:09 2016 -0800 ---------------------------------------------------------------------- core/src/test/scala/integration/kafka/api/AdminClientTest.scala | 2 +- core/src/test/scala/unit/kafka/admin/AclCommandTest.scala | 2 +- core/src/test/scala/unit/kafka/security/auth/AclTest.scala | 2 +- core/src/test/scala/unit/kafka/security/auth/OperationTest.scala | 2 +- .../test/scala/unit/kafka/security/auth/PermissionTypeTest.scala | 2 +- .../src/test/scala/unit/kafka/security/auth/ResourceTypeTest.scala | 2 +- core/src/test/scala/unit/kafka/tools/ConsoleConsumerTest.scala | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/a58b459b/core/src/test/scala/integration/kafka/api/AdminClientTest.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/integration/kafka/api/AdminClientTest.scala b/core/src/test/scala/integration/kafka/api/AdminClientTest.scala index 5930d13..a2313ec 100644 --- a/core/src/test/scala/integration/kafka/api/AdminClientTest.scala +++ b/core/src/test/scala/integration/kafka/api/AdminClientTest.scala @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package integration.kafka.api +package kafka.api import kafka.admin.AdminClient import kafka.api.IntegrationTestHarness http://git-wip-us.apache.org/repos/asf/kafka/blob/a58b459b/core/src/test/scala/unit/kafka/admin/AclCommandTest.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/unit/kafka/admin/AclCommandTest.scala b/core/src/test/scala/unit/kafka/admin/AclCommandTest.scala index 9802811..d7ff67c 100644 --- a/core/src/test/scala/unit/kafka/admin/AclCommandTest.scala +++ b/core/src/test/scala/unit/kafka/admin/AclCommandTest.scala @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package unit.kafka.admin +package kafka.admin import java.io.StringReader import java.util.Properties http://git-wip-us.apache.org/repos/asf/kafka/blob/a58b459b/core/src/test/scala/unit/kafka/security/auth/AclTest.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/unit/kafka/security/auth/AclTest.scala b/core/src/test/scala/unit/kafka/security/auth/AclTest.scala index d4de179..54c12f1 100644 --- a/core/src/test/scala/unit/kafka/security/auth/AclTest.scala +++ b/core/src/test/scala/unit/kafka/security/auth/AclTest.scala @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package unit.kafka.security.auth +package kafka.security.auth import kafka.security.auth._ import kafka.utils.Json http://git-wip-us.apache.org/repos/asf/kafka/blob/a58b459b/core/src/test/scala/unit/kafka/security/auth/OperationTest.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/unit/kafka/security/auth/OperationTest.scala b/core/src/test/scala/unit/kafka/security/auth/OperationTest.scala index 371de38..aeb4c5d 100644 --- a/core/src/test/scala/unit/kafka/security/auth/OperationTest.scala +++ b/core/src/test/scala/unit/kafka/security/auth/OperationTest.scala @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package unit.kafka.security.auth +package kafka.security.auth import kafka.common.{KafkaException} import kafka.security.auth.{Operation, Read} http://git-wip-us.apache.org/repos/asf/kafka/blob/a58b459b/core/src/test/scala/unit/kafka/security/auth/PermissionTypeTest.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/unit/kafka/security/auth/PermissionTypeTest.scala b/core/src/test/scala/unit/kafka/security/auth/PermissionTypeTest.scala index 46ac87e..d517004 100644 --- a/core/src/test/scala/unit/kafka/security/auth/PermissionTypeTest.scala +++ b/core/src/test/scala/unit/kafka/security/auth/PermissionTypeTest.scala @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package unit.kafka.security.auth +package kafka.security.auth import kafka.common.KafkaException import kafka.security.auth.{Allow, PermissionType} http://git-wip-us.apache.org/repos/asf/kafka/blob/a58b459b/core/src/test/scala/unit/kafka/security/auth/ResourceTypeTest.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/unit/kafka/security/auth/ResourceTypeTest.scala b/core/src/test/scala/unit/kafka/security/auth/ResourceTypeTest.scala index 938b201..a2d6b14 100644 --- a/core/src/test/scala/unit/kafka/security/auth/ResourceTypeTest.scala +++ b/core/src/test/scala/unit/kafka/security/auth/ResourceTypeTest.scala @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package unit.kafka.security.auth +package kafka.security.auth import kafka.common.KafkaException import kafka.security.auth.{ResourceType, Topic} http://git-wip-us.apache.org/repos/asf/kafka/blob/a58b459b/core/src/test/scala/unit/kafka/tools/ConsoleConsumerTest.scala ---------------------------------------------------------------------- diff --git a/core/src/test/scala/unit/kafka/tools/ConsoleConsumerTest.scala b/core/src/test/scala/unit/kafka/tools/ConsoleConsumerTest.scala index 7c08e09..22f4cfb 100644 --- a/core/src/test/scala/unit/kafka/tools/ConsoleConsumerTest.scala +++ b/core/src/test/scala/unit/kafka/tools/ConsoleConsumerTest.scala @@ -15,7 +15,7 @@ * limitations under the License. */ -package unit.kafka.tools +package kafka.tools import java.io.FileOutputStream
