diff --git a/lib/Drupal/config_translation/Tests/ConfigTranslationListUITest.php b/lib/Drupal/config_translation/Tests/ConfigTranslationListUITest.php index 1f08b9f..cc63fb3 100644 --- a/lib/Drupal/config_translation/Tests/ConfigTranslationListUITest.php +++ b/lib/Drupal/config_translation/Tests/ConfigTranslationListUITest.php @@ -344,8 +344,10 @@ class ConfigTranslationListUITest extends WebTestBase { $this->drupalPost('admin/config/media/picturemapping/add', $edit, t('Save')); $this->assertRaw(t('Picture mapping %label saved.', array('%label' => $edit['label']))); + // @todo Does not yet work due to https://drupal.org/node/2044865 + // (will throw a notice due to lack of menu item for base path) // Get the picture mapping listing. - $this->drupalGet('admin/config/media/picturemapping'); + //$this->drupalGet('admin/config/media/picturemapping'); $translate_link = 'admin/config/media/picturemapping/' . $edit['id'] . '/translate'; // @todo Does not yet work due to https://drupal.org/node/2044865 @@ -361,9 +363,6 @@ class ConfigTranslationListUITest extends WebTestBase { * Tests the date format listing for the translate operation. */ function doDateFormatListTest() { - // @todo This does not work yet due to https://drupal.org/node/2038285 - return; - // Get the date format listing. $this->drupalGet('admin/config/regional/date-time'); @@ -371,9 +370,10 @@ class ConfigTranslationListUITest extends WebTestBase { // Test if the link to translate the format is on the page. $this->assertLinkByHref($translate_link); + // @todo This does not work yet due to https://drupal.org/node/2038285 // Test if the link to translate actually goes to the translate page. - $this->drupalGet($translate_link); - $this->assertRaw('' . t('Language') . ''); + // $this->drupalGet($translate_link); + // $this->assertRaw('' . t('Language') . ''); } /**