From 4e292d48b784d26ecf29acb274435280990c2f90 Mon Sep 17 00:00:00 2001 From: Melanie Retter Date: Mon, 22 Aug 2016 14:57:46 +0200 Subject: [PATCH] Fix typo Signed-off-by: Melanie Retter --- .../repository/jpa/DistributionSetManagementTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hawkbit-repository/hawkbit-repository-jpa/src/test/java/org/eclipse/hawkbit/repository/jpa/DistributionSetManagementTest.java b/hawkbit-repository/hawkbit-repository-jpa/src/test/java/org/eclipse/hawkbit/repository/jpa/DistributionSetManagementTest.java index 223196e93..b5ba12946 100644 --- a/hawkbit-repository/hawkbit-repository-jpa/src/test/java/org/eclipse/hawkbit/repository/jpa/DistributionSetManagementTest.java +++ b/hawkbit-repository/hawkbit-repository-jpa/src/test/java/org/eclipse/hawkbit/repository/jpa/DistributionSetManagementTest.java @@ -198,7 +198,7 @@ public class DistributionSetManagementTest extends AbstractJpaIntegrationTest { } @Test - @Description("Verfies that a DS is of default type if not specified explicitly at creation time.") + @Description("Verifies that a DS is of default type if not specified explicitly at creation time.") public void createDistributionSetWithImplicitType() { final DistributionSet set = distributionSetManagement .createDistributionSet(new JpaDistributionSet("newtypesoft", "1", "", null, null)); @@ -209,7 +209,7 @@ public class DistributionSetManagementTest extends AbstractJpaIntegrationTest { } @Test - @Description("Verfies that multiple DS are of default type if not specified explicitly at creation time.") + @Description("Verifies that multiple DS are of default type if not specified explicitly at creation time.") public void createMultipleDistributionSetsWithImplicitType() { List sets = new ArrayList<>(); @@ -229,7 +229,7 @@ public class DistributionSetManagementTest extends AbstractJpaIntegrationTest { } @Test - @Description("Verfies that a DS entity cannot be used for creation.") + @Description("Verifies that a DS entity cannot be used for creation.") public void createDistributionSetFailsOnExistingEntity() { final DistributionSet set = distributionSetManagement .createDistributionSet(new JpaDistributionSet("newtypesoft", "1", "", null, null)); @@ -820,7 +820,7 @@ public class DistributionSetManagementTest extends AbstractJpaIntegrationTest { } @Test - @Description("Verfiy that the DistributionSetAssignmentResult not contains already assigned targets.") + @Description("Verify that the DistributionSetAssignmentResult not contains already assigned targets.") public void verifyDistributionSetAssignmentResultNotContainsAlreadyAssignedTargets() { DistributionSet dsToTargetAssigned = testdataFactory.createDistributionSet("ds-3");