Skip to content

Commit

Permalink
! that version of chrome package has gone walkies ??? WTF
Browse files Browse the repository at this point in the history
  • Loading branch information
Spuds committed Mar 28, 2024
1 parent 4c71cac commit 7216018
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/setup-selenium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ echo "Installing Browser"
# Available Chrome Versions
# https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable?id=202706
#
CHROME_VERSION='110.0.5481.100-1' # '91.0.4472.114-1'
CHROME_VERSION='112.0.5615.49-1' #'110.0.5481.100-1' # '91.0.4472.114-1'
sudo wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_110.0.5481.100-1_amd64.deb

sudo wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb -q
sudo dpkg -i google-chrome-stable_${CHROME_VERSION}_amd64.deb
Expand Down
5 changes: 3 additions & 2 deletions tests/ElkArte/Controller/OfflineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public function setUp(): void
*/
public function testActionOffline(): void
{
$this->expectOutputString('RETRY');
$this->offlineController->action_offline();
//$this->expectOutputString('RETRY');
$output = $this->offlineController->action_offline();
$this->assertStringContainsString('RETRY', $output);
}
}

0 comments on commit 7216018

Please sign in to comment.