aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2022-02-23 00:47:00 +0000
committerA Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2022-03-05 11:10:54 +0000
commitc4f9d8abda53c86e87cb5152616a53249f0b97df (patch)
treefb6e1597bca537e28396fc2f9d65ea23999330d0 /test
parent6d520addd1f147bffca0402e05d1eb2152f66cd2 (diff)
dfilter: Rename "unparsed" to "literal"
A literal value is a value that cannot be interpreted as a registered protocol. An unparsed value can be a literal or an identifier (protocol/field) according to context and the current disambiguation rules. Strictly literal here is to be understood to mean "numeric literal, including numeric arrays, but not strings or character constants".
Diffstat (limited to 'test')
-rw-r--r--test/suite_dfilter/group_range_method.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite_dfilter/group_range_method.py b/test/suite_dfilter/group_range_method.py
index 646e65a0e2..e0776fda46 100644
--- a/test/suite_dfilter/group_range_method.py
+++ b/test/suite_dfilter/group_range_method.py
@@ -41,7 +41,7 @@ class case_range(unittest.TestCase):
def test_slice_unparsed_1(self, checkDFilterFail):
dfilter = "a == b[1]"
- checkDFilterFail(dfilter, "Range is not supported for entity \"b\" of type UNPARSED")
+ checkDFilterFail(dfilter, "Range is not supported for entity \"b\" of type LITERAL")
def test_slice_func_1(self, checkDFilterSucceed):
dfilter = "string(ipx.src.node)[3:2] == \"cc:dd\""