? modules/simpletest/tests/update_test_3.install.17807
? modules/simpletest/tests/update_test_3.install.17813
Index: modules/comment/comment.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.install,v
retrieving revision 1.61
diff -u -p -r1.61 comment.install
--- modules/comment/comment.install	17 Feb 2010 05:31:31 -0000	1.61
+++ modules/comment/comment.install	28 Feb 2010 14:38:50 -0000
@@ -83,16 +83,16 @@ function comment_update_dependencies() {
   // run after the Field module has been enabled, but before upgrading field
   // data.
   $dependencies['comment'][7005] = array(
-    'system' => 7049,
+    'system' => 'update_7049',
   );
   $dependencies['system'][7050] = array(
-    'comment' => 7005,
+    'comment' => 'update_7005',
   );
 
   // Comment update 7012 creates the comment body field and therefore must run
   // after all entities have been updated.
   $dependencies['comment'][7012] = array(
-    'system' => 7021,
+    'system' => 'update_7021',
   );
 
   return $dependencies;
Index: modules/filter/filter.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter/filter.install,v
retrieving revision 1.32
diff -u -p -r1.32 filter.install
--- modules/filter/filter.install	18 Feb 2010 04:36:38 -0000	1.32
+++ modules/filter/filter.install	28 Feb 2010 14:38:50 -0000
@@ -113,7 +113,7 @@ function filter_update_dependencies() {
   // Filter update 7005 migrates block data and therefore needs to run after
   // the {block_custom} table is properly set up.
   $dependencies['filter'][7005] = array(
-    'taxonomy' => 7002,
+    'taxonomy' => 'update_7002',
   );
 
   return $dependencies;
Index: modules/node/node.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.install,v
retrieving revision 1.44
diff -u -p -r1.44 node.install
--- modules/node/node.install	11 Feb 2010 17:44:47 -0000	1.44
+++ modules/node/node.install	28 Feb 2010 14:38:51 -0000
@@ -363,10 +363,10 @@ function node_update_dependencies() {
   // Node update 7006 migrates node data to fields and therefore must run after
   // the Field module has been enabled, but before upgrading field data.
   $dependencies['node'][7006] = array(
-    'system' => 7049,
+    'system' => 'update_7049',
   );
   $dependencies['system'][7050] = array(
-    'node' => 7006,
+    'node' => 'update_7006',
   );
   return $dependencies;
 }
Index: modules/simpletest/tests/update_test_2.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/update_test_2.install,v
retrieving revision 1.1
diff -u -p -r1.1 update_test_2.install
--- modules/simpletest/tests/update_test_2.install	3 Feb 2010 18:16:23 -0000	1.1
+++ modules/simpletest/tests/update_test_2.install	28 Feb 2010 14:38:51 -0000
@@ -11,7 +11,7 @@
  */
 function update_test_2_update_dependencies() {
   $dependencies['update_test_2'][7001] = array(
-    'update_test_3' => 7000,
+    'update_test_3' => 'update_7000',
   );
   return $dependencies;
 }
Index: modules/simpletest/tests/update_test_3.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/simpletest/tests/update_test_3.install,v
retrieving revision 1.1
diff -u -p -r1.1 update_test_3.install
--- modules/simpletest/tests/update_test_3.install	3 Feb 2010 18:16:23 -0000	1.1
+++ modules/simpletest/tests/update_test_3.install	28 Feb 2010 14:38:51 -0000
@@ -11,7 +11,7 @@
  */
 function update_test_3_update_dependencies() {
   $dependencies['update_test_3'][7000] = array(
-    'update_test_2' => 7000,
+    'update_test_2' => 'update_7000',
   );
   return $dependencies;
 }
Index: modules/taxonomy/taxonomy.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.install,v
retrieving revision 1.36
diff -u -p -r1.36 taxonomy.install
--- modules/taxonomy/taxonomy.install	18 Feb 2010 04:36:38 -0000	1.36
+++ modules/taxonomy/taxonomy.install	28 Feb 2010 14:38:51 -0000
@@ -213,17 +213,17 @@ function taxonomy_update_dependencies() 
   // run after the Field module has been enabled, but before upgrading field
   // data.
   $dependencies['taxonomy'][7002] = array(
-    'system' => 7049,
+    'system' => 'update_7049',
   );
   $dependencies['user'][7006] = array(
-    'taxonomy' => 7002,
+    'taxonomy' => 'update_7002',
   );
   $dependencies['system'][7050] = array(
-    'taxonomy' => 7002,
+    'taxonomy' => 'update_7002',
   );
   // It also must run before nodes are upgraded to use the Field API.
   $dependencies['node'][7006] = array(
-    'taxonomy' => 7002,
+    'taxonomy' => 'update_7002',
   );
  
   return $dependencies;
