fix(test): adjust plugin dir test to work on released versions

This commit is contained in:
Joe Nahmias 2023-06-01 23:37:26 -04:00 committed by Frédéric Guillot
parent ad01710ce6
commit af2d972914
1 changed files with 2 additions and 2 deletions

View File

@ -24,12 +24,12 @@ class DirectoryTest extends Base
$plugins = array( $plugins = array(
array( array(
'title' => 'Plugin A', 'title' => 'Plugin A',
'compatible_version' => '1.0.30', 'compatible_version' => '>=1.0.30',
'remote_install' => true, 'remote_install' => true,
), ),
array( array(
'title' => 'Plugin B', 'title' => 'Plugin B',
'compatible_version' => '1.0.29', 'compatible_version' => '>=1.0.29',
'remote_install' => false, 'remote_install' => false,
), ),
); );