diff options
| -rwxr-xr-x | bin/snap_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/snap_tests.py b/bin/snap_tests.py index c6db891..b20cd1c 100755 --- a/bin/snap_tests.py +++ b/bin/snap_tests.py @@ -38,7 +38,8 @@ class SnapList(): """snap list should show the core package is installed.""" data = Snapd().list() for snap in data: - if snap['name'] in ('core', 'core16', 'core18', 'core20'): + if snap['name'] in ('core', 'core16', 'core18', 'core20', + 'core22'): print("Found a core snap") print(snap['name'], snap['version'], snap['revision']) return 0 |
