diff --git a/bindings/python/generate_tests.py b/bindings/python/generate_tests.py index e7c79bd68..0193dde21 100755 --- a/bindings/python/generate_tests.py +++ b/bindings/python/generate_tests.py @@ -43,6 +43,8 @@ class TestClass: else: properties.append(method_or_property) + callables.sort() + properties.sort() return callables, properties diff --git a/bindings/python/test_Hamlib_Amp_class.py b/bindings/python/test_Hamlib_Amp_class.py index 77a2dc0ae..4f69b6f7d 100755 --- a/bindings/python/test_Hamlib_Amp_class.py +++ b/bindings/python/test_Hamlib_Amp_class.py @@ -36,4 +36,6 @@ class TestClass: else: properties.append(method_or_property) + callables.sort() + properties.sort() return callables, properties diff --git a/bindings/python/test_Hamlib_Rig_class.py b/bindings/python/test_Hamlib_Rig_class.py index 7f5d440ac..8a0635163 100755 --- a/bindings/python/test_Hamlib_Rig_class.py +++ b/bindings/python/test_Hamlib_Rig_class.py @@ -36,4 +36,6 @@ class TestClass: else: properties.append(method_or_property) + callables.sort() + properties.sort() return callables, properties diff --git a/bindings/python/test_Hamlib_Rot_class.py b/bindings/python/test_Hamlib_Rot_class.py index 107d07bee..32d7ad5aa 100755 --- a/bindings/python/test_Hamlib_Rot_class.py +++ b/bindings/python/test_Hamlib_Rot_class.py @@ -36,4 +36,6 @@ class TestClass: else: properties.append(method_or_property) + callables.sort() + properties.sort() return callables, properties diff --git a/bindings/python/test_Hamlib_class.py b/bindings/python/test_Hamlib_class.py index 76a2623db..c87819f73 100755 --- a/bindings/python/test_Hamlib_class.py +++ b/bindings/python/test_Hamlib_class.py @@ -36,4 +36,6 @@ class TestClass: else: properties.append(method_or_property) + callables.sort() + properties.sort() return callables, properties