Test:Fix the test for automatic updates

This commit is contained in:
Anders Broman 2024-11-15 14:13:38 +01:00 committed by AndersBroman
parent b1c5c52ea8
commit 817a1e0921

View File

@ -37,7 +37,7 @@ def wireshark_features(request, cmd_wireshark, make_env):
print('Failed to detect Wireshark features: %s' % (ex,))
wireshark_v = ''
return types.SimpleNamespace(
have_automatic_updates='with automatic updates' in wireshark_v,
have_automatic_updates='+automatic updates' in wireshark_v,
)
class TestReleaseAutomaticUpdates: