File size: 241 Bytes
985c397
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# SPDX-License-Identifier: LGPL-2.1-or-later

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))