ComplianceAsCode / auditree-framework

The Auditree framework tool to run compliance control checks as unit tests.
https://auditree.github.io/
Apache License 2.0
59 stars 23 forks source link

fix: add assertEquals compatibility for Python 3.12+ #160

Closed cletomartin closed 2 months ago

cletomartin commented 2 months ago

What

Add assertEquals compatibility for Python 3.12+.

Why

Looks like assertEquals() has been retired from unittest.TestCase. We use assertEqual() now but we will allow users to use assertEquals() for existing checks.

How

Add a method to ComplianceCheck that points to asserEqual().

Test

Added unit tests and manually tested.