Skip to content

Commit

Permalink
Issue #868: require Selenium::Remote::Driver 1.41
Browse files Browse the repository at this point in the history
No need to chase old bugs.
  • Loading branch information
bschmalhofer committed Mar 16, 2021
1 parent 0dd8ccb commit 6dacf68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions bin/otobo.CheckModules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -972,11 +972,12 @@

# Feature devel
{
Module => 'Selenium::Remote::Driver',
Required => 0,
Features => ['devel:test'],
Comment => 'used by Kernel::System::UnitTest::Selenium',
InstTypes => {
Module => 'Selenium::Remote::Driver',
Required => 0,
VersionRequired => '1.41',
Features => ['devel:test'],
Comment => 'used by Kernel::System::UnitTest::Selenium',
InstTypes => {
aptget => undef,
emerge => undef,
zypper => undef,
Expand Down
4 changes: 2 additions & 2 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ feature 'devel:encoding', 'Suppport for devel:encoding' => sub {

feature 'devel:test', 'Suppport for devel:test' => sub {
# used by Kernel::System::UnitTest::Selenium
requires 'Selenium::Remote::Driver';
requires 'Selenium::Remote::Driver', ">= 1.41";

# a quick compile check
requires 'Test::Compile';
Expand Down Expand Up @@ -317,7 +317,7 @@ feature 'optional', 'Suppport for optional' => sub {
requires 'Const::Fast';

# used by Kernel::System::UnitTest::Selenium
requires 'Selenium::Remote::Driver';
requires 'Selenium::Remote::Driver', ">= 1.41";

# for deeply inspecting strings
requires 'String::Dump';
Expand Down
2 changes: 1 addition & 1 deletion cpanfile.docker
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ requires 'Unicode::Collate';

# feature 'devel:test', 'Suppport for devel:test' => sub {
# used by Kernel::System::UnitTest::Selenium
requires 'Selenium::Remote::Driver';
requires 'Selenium::Remote::Driver', ">= 1.41";

# a quick compile check
requires 'Test::Compile';
Expand Down

0 comments on commit 6dacf68

Please sign in to comment.