Skip to content

Commit

Permalink
update redis test
Browse files Browse the repository at this point in the history
  • Loading branch information
antgonza committed Aug 21, 2023
1 parent 8929ad0 commit 3e6a996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/qiita-test-install
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ class QiitaConfig(TestCase):
string_acceptable_version = '.'.join(map(str, acceptable_version))
version = tuple(map(int, self.redis_version.split('.')))

self.assertTrue(acceptable_version <= version,
self.assertTrue(acceptable_version >= version,
'Unsupported redis version. You have %s but the '
'minimum required version is %s'
% ('.'.join(map(str, version)),
Expand Down

0 comments on commit 3e6a996

Please sign in to comment.