From 1340c0080c750867297b3f20bbecbad707c18157 Mon Sep 17 00:00:00 2001 From: Mads Jensen Date: Mon, 2 Dec 2019 15:02:30 +0100 Subject: Use dict literals. (#5080) --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/utils.py b/tests/utils.py index 1362e906..ca3245b0 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -783,7 +783,7 @@ def load_nist_kbkdf_vectors(vector_data): tag.update({name.lower(): value.lower()}) elif line.startswith("COUNT="): - test_data = dict() + test_data = {} test_data.update(tag) vectors.append(test_data) elif line.startswith("L"): -- cgit v1.2.3