From 04af273d718488bd5c097b1b32d39da4cdd62f76 Mon Sep 17 00:00:00 2001 From: Rich Piazza Date: Fri, 5 Jun 2020 09:17:42 -0400 Subject: [PATCH] flaky --- stix2/test/v20/test_pattern_expressions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stix2/test/v20/test_pattern_expressions.py b/stix2/test/v20/test_pattern_expressions.py index 4142f15..a96d3b8 100644 --- a/stix2/test/v20/test_pattern_expressions.py +++ b/stix2/test/v20/test_pattern_expressions.py @@ -513,7 +513,7 @@ def test_parsing_start_stop_qualified_expression(): def test_parsing_illegal_start_stop_qualified_expression(): with pytest.raises(ValueError): - patt_obj = create_pattern_object("[ipv4-addr:value = '1.2.3.4'] START '2016-06-01' STOP '2017-03-12T08:30:00Z'", version="2.0") + create_pattern_object("[ipv4-addr:value = '1.2.3.4'] START '2016-06-01' STOP '2017-03-12T08:30:00Z'", version="2.0") def test_list_constant():