/** * @test * */ public function sitesAreNotMergedIfThereIsConflict() { $cloneWpAutomation = new WpAutomation(self::$cloneSiteConfig, self::$testConfig->wpCliVersion); $cloneWpAutomation->editOption('blogname', 'Blogname from clone - conflict'); $wpAutomation = new WpAutomation(self::$siteConfig, self::$testConfig->wpCliVersion); $wpAutomation->editOption('blogname', 'Blogname from original - conflict'); $output = $wpAutomation->runWpCliCommand('vp', 'pull', ['from' => self::$cloneSiteConfig->name]); $this->assertContains("Pull aborted", $output); }