X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Flocale%2Fsrc%2FTests%2FLocaleTranslateStringTourTest.php;fp=web%2Fcore%2Fmodules%2Flocale%2Fsrc%2FTests%2FLocaleTranslateStringTourTest.php;h=0000000000000000000000000000000000000000;hb=bfbba508964731508b9bd6d5835c2edc858db95b;hp=a4b1656655b92a9723f69734450ac6435aa9bdfe;hpb=cb9a80db11fc6b014e5b1e693a5a391c95eb5d9a;p=yaffs-website diff --git a/web/core/modules/locale/src/Tests/LocaleTranslateStringTourTest.php b/web/core/modules/locale/src/Tests/LocaleTranslateStringTourTest.php deleted file mode 100644 index a4b165665..000000000 --- a/web/core/modules/locale/src/Tests/LocaleTranslateStringTourTest.php +++ /dev/null @@ -1,50 +0,0 @@ -adminUser = $this->drupalCreateUser(['translate interface', 'access tour', 'administer languages']); - $this->drupalLogin($this->adminUser); - } - - /** - * Tests locale tour tip availability. - */ - public function testTranslateStringTourTips() { - // Add another language so there are no missing form items. - $edit = []; - $edit['predefined_langcode'] = 'es'; - $this->drupalPostForm('admin/config/regional/language/add', $edit, t('Add language')); - - $this->drupalGet('admin/config/regional/translate'); - $this->assertTourTips(); - } - -}