From 7234b20c6a541fa1a3b676d551f168950107ac10 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Sun, 8 Jan 2023 20:23:10 -0500 Subject: [PATCH] Fix a typo in a Python test name --- 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 204a96dd4be..623760b0649 100644 --- a/tests/py_test.py +++ b/tests/py_test.py @@ -131,7 +131,7 @@ def test_wire_format(self): 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,