BIGTOP-247. Typo in error msgs.
Contributed by Will McQueen



git-svn-id: https://svn.apache.org/repos/asf/incubator/bigtop/branches/branch-0.2@1199988 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/PackageTestCommon.groovy b/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/PackageTestCommon.groovy
index 775f10e..7c60a18 100644
--- a/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/PackageTestCommon.groovy
+++ b/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/PackageTestCommon.groovy
@@ -328,12 +328,12 @@
     if (pm.type == "apt" && doc != null) {
       file.putAll(doc);
     } else {
-      checkThat("list of documentation files of pacakge $name is different from what was expected",
+      checkThat("list of documentation files of package $name is different from what was expected",
                 docs, hasSameKeys(doc));
     }
-    checkThat("list of config files of pacakge $name is different from what was expected",
+    checkThat("list of config files of package $name is different from what was expected",
               configs, hasSameKeys(config));
-    checkThat("list of regular files of pacakge $name is different from what was expected",
+    checkThat("list of regular files of package $name is different from what was expected",
               files, hasSameKeys(file));
 
     // TODO: we should probably iterate over a different set of files to include loose files as well
diff --git a/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasics.groovy b/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasics.groovy
index bec62df..22eb341 100644
--- a/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasics.groovy
+++ b/bigtop-tests/test-artifacts/package/src/main/groovy/org/apache/bigtop/itest/packagesmoke/TestPackagesBasics.groovy
@@ -126,7 +126,7 @@
   synchronized void testPackageInstall() {
     // WARNING: sometimes packages do not install because the server is busy
     for (int i=3; pkg.install() && i>0; i--) {
-      recordFailure("can not install pacakge $name will retry $i times");
+      recordFailure("can not install package $name will retry $i times");
     }
 
     // TODO: we need to come up with a way to abort any further execution to avoid spurious failures