[autotest] Remove old priority hack

This is from 2013, Im assuming the priorities have all been migrated
over.

The reason for doing this is that the sole purpose of this function is
to remove invalid keywords from passing locals() to create_job_common,
so this is a step toward removing locals() and this function.

BUG=None
TEST=CQ

Change-Id: Ia5b527b509863bbe12ff047628c23a988dbc32c9
Reviewed-on: https://chromium-review.googlesource.com/420178
Commit-Ready: Allen Li <[email protected]>
Tested-by: Allen Li <[email protected]>
Reviewed-by: Prathmesh Prabhu <[email protected]>
diff --git a/server/sequence.py b/server/sequence.py
index 3a86f58..c89d27a 100644
--- a/server/sequence.py
+++ b/server/sequence.py
@@ -11,6 +11,7 @@
 
 import common
 from autotest_lib.client.common_lib import control_data
+from autotest_lib.client.common_lib import priorities
 from autotest_lib.server import utils
 from autotest_lib.server.cros.dynamic_suite import control_file_getter
 from autotest_lib.server.cros.dynamic_suite import frontend_wrappers
@@ -144,7 +145,7 @@
             afe.create_job(
                     self.child_control_file(),
                     name=child_job_name,
-                    priority='Medium',
+                    priority=priorities.Priority.DEFAULT,
                     control_type=control_data.CONTROL_TYPE.SERVER,
                     hosts=[hostname], meta_hosts=(), one_time_hosts=(),
                     atomic_group_name=None, synch_count=None, is_template=False,