aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2022-03-28 00:35:19 +0100
committerA Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2022-03-29 12:19:26 +0000
commit431cb43b815d837f7ccd1dfba164ba0e758456a0 (patch)
tree94a83e8a6ede30d60e7bae9e1ef7d8664bfa4914 /test
parentf401cdeaaed9405f351275802d560ca886a3e8fe (diff)
dfilter: Remove parenthesis deprecation warning
This usage devalues a mechanism for warning users that deserves more attention than this minor suggestion. The warning is inconvenient for intermediate and advanced users.
Diffstat (limited to 'test')
-rw-r--r--test/suite_dfilter/group_syntax.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/suite_dfilter/group_syntax.py b/test/suite_dfilter/group_syntax.py
index 6149b0de93..867106862a 100644
--- a/test/suite_dfilter/group_syntax.py
+++ b/test/suite_dfilter/group_syntax.py
@@ -81,10 +81,6 @@ class case_syntax(unittest.TestCase):
checkDFilterCount(dfilter, 0)
def test_deprecated_1(self, checkDFilterSucceed):
- dfilter = "http && udp || tcp"
- checkDFilterSucceed(dfilter, "suggest parentheses around")
-
- def test_deprecated_2(self, checkDFilterSucceed):
dfilter = "bootp"
checkDFilterSucceed(dfilter, "Deprecated tokens: \"bootp\"")