Code Duplication    Length = 6-6 lines in 2 locations

codeception/acceptance/ZZ99PluginUninstallerCest.php 2 locations

@@ 32-37 (lines=6) @@
29
    {
30
        $I->wantTo('プラグインアンインストール');
31
32
        foreach ($this->plugins as $num => $plugin) {
33
34
            // プラグイン無効化
35
            OwnersPluginPage::go($I)->無効にする($plugin['code']);
36
            $I->see('プラグインを無効にしました。', OwnersPluginPage::$完了メッセージ);
37
        }
38
39
        foreach ($this->plugins as $num => $plugin) {
40
@@ 39-44 (lines=6) @@
36
            $I->see('プラグインを無効にしました。', OwnersPluginPage::$完了メッセージ);
37
        }
38
39
        foreach ($this->plugins as $num => $plugin) {
40
41
            // プラグイン削除
42
            OwnersPluginPage::go($I)->削除($plugin['code']);
43
            $I->see(' プラグインを削除しました。', OwnersPluginPage::$完了メッセージ);
44
        }
45
    }
46
}
47