CAM: rename "Tests" to "CAMTests" to avoid python name conflicts

This commit is contained in:
Adrian Insaurralde Avalos
2024-10-28 16:14:19 -03:00
committed by Yorik van Havre
parent 815375a4a0
commit 2ff4914fd8
62 changed files with 175 additions and 175 deletions

View File

@@ -0,0 +1,6 @@
import os
from unittest import TestCase
def assertFilePathsEqual(self: TestCase, path1: os.PathLike, path2: os.PathLike):
self.assertEqual(os.path.realpath(path1), os.path.realpath(path2))