Skip to content

Commit fec3867

Browse files
authored
Merge pull request #92 from magium/develop
Develop
2 parents 144bbdb + a4a7457 commit fec3867

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

lib/Magento/Themes/Customer/AbstractThemeConfiguration.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44

55

66
use Magium\AbstractConfigurableElement;
7-
use Magium\Themes\ThemeConfigurationInterface;
87

9-
abstract class AbstractThemeConfiguration extends AbstractConfigurableElement implements ThemeConfigurationInterface
8+
abstract class AbstractThemeConfiguration extends AbstractConfigurableElement
109
{
1110

1211
public $accountNavigationXpath;
@@ -288,4 +287,4 @@ public function getLoginSubmitButton()
288287
return $this->loginSubmitButton;
289288
}
290289

291-
}
290+
}

lib/Magento/Themes/OnePageCheckout/AbstractThemeConfiguration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Magium\AbstractConfigurableElement;
77
use Magium\Themes\ThemeConfigurationInterface;
88

9-
abstract class AbstractThemeConfiguration extends AbstractConfigurableElement implements ThemeConfigurationInterface // ThemeConfigurationInterface is here simply for compatibility for extractors
9+
abstract class AbstractThemeConfiguration extends AbstractConfigurableElement
1010
{
1111

1212
/**
@@ -737,4 +737,4 @@ public function getCartSummaryCheckoutProductLoopSubtotalXpath($itemCount)
737737
return $this->translatePlaceholders($return);
738738
}
739739

740-
}
740+
}

tests/Magento/AbstractMagentoTestCase/TranslatorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function testCustomLocaleSet()
4040

4141
public function testOnWebpage()
4242
{
43-
// self::markTestSkipped('This test requires the German language pack. This test will fail unless you have that optional feature installed');
43+
self::markTestSkipped('This test requires the German language pack. This test will fail unless you have that optional feature installed');
4444
$translator = $this->getTranslator();
4545
$translator->addTranslationCsvFile(__DIR__ . '/translation.csv', 'en_US');
4646
$translator->addTranslationCsvFile(__DIR__ . '/translation.de_DE.csv', 'de_DE');
@@ -53,4 +53,4 @@ public function testOnWebpage()
5353
$this->getNavigator(AccountHome::NAVIGATOR)->navigateTo();
5454
}
5555

56-
}
56+
}

0 commit comments

Comments
 (0)