From af2d972914521d4cc0ecc70815e36d0f0a81418e Mon Sep 17 00:00:00 2001 From: Joe Nahmias Date: Thu, 1 Jun 2023 23:37:26 -0400 Subject: [PATCH] fix(test): adjust plugin dir test to work on released versions --- tests/units/Core/Plugin/DirectoryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/units/Core/Plugin/DirectoryTest.php b/tests/units/Core/Plugin/DirectoryTest.php index 302bd6f60..1d8b86999 100644 --- a/tests/units/Core/Plugin/DirectoryTest.php +++ b/tests/units/Core/Plugin/DirectoryTest.php @@ -24,12 +24,12 @@ class DirectoryTest extends Base $plugins = array( array( 'title' => 'Plugin A', - 'compatible_version' => '1.0.30', + 'compatible_version' => '>=1.0.30', 'remote_install' => true, ), array( 'title' => 'Plugin B', - 'compatible_version' => '1.0.29', + 'compatible_version' => '>=1.0.29', 'remote_install' => false, ), );