diff --git a/theming_example/theming_example.module b/theming_example/theming_example.module
index 1cb321a..c6f9d91 100644
--- a/theming_example/theming_example.module
+++ b/theming_example/theming_example.module
@@ -96,7 +96,7 @@ function theming_example_theme() {
 function theming_example_page() {
   $content[] = t('Some examples of pages and forms that are run through theme functions.');
   $content[] = l(t('Simple page with a list'), 'examples/theming_example/theming_example_list_page');
-  $content[] = l(t('Simple form 1'), 'examples/theming_example/theming_example_order_form');
+  $content[] = l(t('Simple form 1'), 'examples/theming_example/theming_example_select_form');
   $content[] = l(t('Simple form 2'), 'examples/theming_example/theming_example_text_form');
   $content['#theme_wrappers'] = array('theming_example_content_array');
   return $content;
diff --git a/theming_example/theming_example.test b/theming_example/theming_example.test
index 19d6ccc..553c5e0 100644
--- a/theming_example/theming_example.test
+++ b/theming_example/theming_example.test
@@ -30,7 +30,7 @@ class ThemingExampleTestCase extends DrupalWebTestCase {
     // Check that the main page has been themed (first line with <b>) and has content.
     $this->drupalGet('examples/theming_example');
     $this->assertRaw('<strong>Some examples of pages');
-    $this->assertRaw('examples/theming_example/theming_example_order_form">Simple form 1</a>');
+    $this->assertRaw('examples/theming_example/theming_example_select_form">Simple form 1</a>');
 
     // Visit the list demonstration page and check that css gets loaded
     // and do some spot checks on how the two lists were themed.
