From ca6381bcc84f1d4d84b2b8d4f33d7f6f4f3d9a47 Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Mon, 9 Jan 2023 13:32:50 -0500 Subject: [PATCH] Fix a typo in a Python test name (#7774) --- tests/py_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/py_test.py b/tests/py_test.py index 204a96dd4..623760b06 100644 --- a/tests/py_test.py +++ b/tests/py_test.py @@ -131,7 +131,7 @@ class TestWireFormat(unittest.TestCase): class TestObjectBasedAPI(unittest.TestCase): """ Tests the generated object based API.""" - def test_consistenty_with_repeated_pack_and_unpack(self): + def test_consistency_with_repeated_pack_and_unpack(self): """ Checks the serialization and deserialization between a buffer and its python object. It tests in the same way as the C++ object API test,