Skip to content

Commit 63910af

Browse files
author
Edwin Westerhoud
committed
Fixed integration tests.
1 parent 65a0485 commit 63910af

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/integration/SettingsIntegrationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public function testShouldShowResizingWhenOriginalEnabled() {
125125
}
126126
$labels = self::$driver->findElements(WebDriverBy::tagName('label'));
127127
$texts = array_map('innerText', $labels);
128-
$this->assertContains('Resize orginal images larger than:', $texts);
128+
$this->assertContains('Resize and compress orginal images to fit within:', $texts);
129129
$paragraphs = self::$driver->findElements(WebDriverBy::tagName('p'));
130130
$texts = array_map('innerText', $paragraphs);
131131
$this->assertNotContains('Enable the compression of the original image size to configure resizing.', $texts);
@@ -138,7 +138,7 @@ public function testShouldNotShowResizingWhenOriginalDisabled() {
138138
}
139139
$labels = self::$driver->findElements(WebDriverBy::tagName('label'));
140140
$texts = array_map('innerText', $labels);
141-
$this->assertNotContains('Resize orginal images larger than:', $texts);
141+
$this->assertNotContains('Resize and compress orginal images to fit within:', $texts);
142142
$paragraphs = self::$driver->findElements(WebDriverBy::tagName('p'));
143143
$texts = array_map('innerText', $paragraphs);
144144
$this->assertContains('Enable the compression of the original image size to configure resizing.', $texts);

0 commit comments

Comments
 (0)