Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2020-03-24 11:14:51 +0300
committerGitHub <noreply@github.com>2020-03-24 11:14:51 +0300
commitdc45e00e44ba2ef1dcb9628ee706b871fc242d0f (patch)
tree69fff8408a08d026f4897706b01264746f4dddc3 /plugins/TestRunner
parenta02376ecf678a9c1678bc9083a2aea69d4842f7d (diff)
Regenerates Omnifixture (#15520)
* updates Omnifixture * fix some namespaces * updates some outdated urls * use correct method * update expected UI files * ensure popover param is not sanitized * try to fix one click update ui test until 4.x stable release * fix jstracker ui test * set now timestamp for realtime test * replace some changing ids to avoid changes on omnifixture update * ui files
Diffstat (limited to 'plugins/TestRunner')
-rw-r--r--plugins/TestRunner/Commands/SyncScreenshots.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TestRunner/Commands/SyncScreenshots.php b/plugins/TestRunner/Commands/SyncScreenshots.php
index 8688667251..6ba4ce8329 100644
--- a/plugins/TestRunner/Commands/SyncScreenshots.php
+++ b/plugins/TestRunner/Commands/SyncScreenshots.php
@@ -80,7 +80,7 @@ class SyncScreenshots extends ConsoleCommand
private function getScreenshotList($repository, $buildNumber, $httpUser = null, $httpPassword = null)
{
- $url = sprintf('https://builds-artifacts.piwik.org/api/%s/%s', $repository, $buildNumber);
+ $url = sprintf('https://builds-artifacts.matomo.org/api/%s/%s', $repository, $buildNumber);
$this->logger->debug('Fetching {url}', array('url' => $url));
@@ -111,7 +111,7 @@ class SyncScreenshots extends ConsoleCommand
private function downloadScreenshot($url, $repository, $screenshot, $httpUser, $httpPassword)
{
$downloadTo = $this->getDownloadToPath($repository, $screenshot) . $screenshot;
- $url = 'https://builds-artifacts.piwik.org' . $url;
+ $url = 'https://builds-artifacts.matomo.org' . $url;
$this->logger->debug("Downloading {url} to {destination}", array('url' => $url, 'destination' => $downloadTo));