Skip to content

Commit

Permalink
Fix test_squash_invalid
Browse files Browse the repository at this point in the history
The default_version `1.0` no longer matches `> 1` so raise to 1.1
  • Loading branch information
Flamefire committed Oct 24, 2024
1 parent bb7c597 commit aa038b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/framework/ebconfigobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ def test_squash_invalid(self):

tc_tmpl = '%(name)s == %(version)s'

default_version = '1.0'
all_wrong_versions = [default_version, '>= 0.0', '< 1.0']
default_version = '1.1'
all_wrong_versions = [default_version, '>= 0.0', '< 1.1']

# all txt should have default version and first toolchain unmodified

Expand Down

0 comments on commit aa038b3

Please sign in to comment.