FLEX-34756 renamed the unit tests task to 'test', to match the pattern created by the sdk build script. Also renamed a misspelled variable in AllTestsSuite.
diff --git a/automation_tests/src/AllTestsSuite.as b/automation_tests/src/AllTestsSuite.as
index 1e8206a..901c90f 100644
--- a/automation_tests/src/AllTestsSuite.as
+++ b/automation_tests/src/AllTestsSuite.as
@@ -58,7 +58,7 @@
         public var factoryImportTest:FactoryImportTest;
         public var accessibilityMethodsTest:AccessibilityMethodsTest;
         public var allChartAttributeTest:AllCharAttributeTest;
-        public var allContAttirbuteTest:AllContAttributeTest;
+        public var allContAttributeTest:AllContAttributeTest;
         public var allEventTest:AllEventTest;
         public var allParagraphAttributeTest:AllParaAttributeTest;
         public var attributeTest:AttributeTest;
diff --git a/build.xml b/build.xml
index 09a27ab..ff2221c 100644
--- a/build.xml
+++ b/build.xml
@@ -61,7 +61,7 @@
       </fileset>
     </classpath>
   </taskdef>
-  <target name="all" depends="main, asTestApps,textLayout_editBar, textLayout_ui, testApps, automation_core, automation_tests, automation_apps, flexunnit_tests" description="Clean build of TLF component and associated applications"/>
+  <target name="all" depends="main, asTestApps,textLayout_editBar, textLayout_ui, testApps, automation_core, automation_tests, automation_apps, test" description="Clean build of TLF component and associated applications"/>
   <target name="main" depends="clean,textLayout" description="Clean build of textLayout.swc"/>
   <target name="clean" description="Cleans all SWCs and SWFs">
     <delete failonerror="false">
@@ -309,7 +309,13 @@
       </fileset>
     </copy>
   </target>
-  <target name="flexunnit_tests">
-    <flexunit swf="${output.dir}/apps/automation_apps/bin/VellumUnit.swf" player="flash" toDir="${output.dir}/apps/automation_apps" haltonfailure="true" verbose="true" />
+  <target name="test">
+    <flexunit
+            swf="${output.dir}/apps/automation_apps/bin/VellumUnit.swf"
+            player="flash"
+            toDir="${output.dir}/apps/automation_apps"
+            haltonfailure="true"
+            verbose="true"
+            />
   </target>
 </project>