Skip to content

Commit

Permalink
Reverted assertEqual parameter flip
Browse files Browse the repository at this point in the history
Signed-off-by: Doug Halley <[email protected]>
  • Loading branch information
douglascomet committed Feb 15, 2024
1 parent 7cb18eb commit 403721c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_url_conversions.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,17 @@ def test_roundtrip_rel(self):
def test_windows_urls(self):
for url in (WINDOWS_ENCODED_URL, WINDOWS_DRIVE_URL):
processed_url = otio.url_utils.filepath_from_url(url)
self.assertEqual(WINDOWS_DRIVE_PATH, processed_url)
self.assertEqual(processed_url, WINDOWS_DRIVE_PATH)

def test_windows_unc_urls(self):
for url in (WINDOWS_ENCODED_UNC_URL, WINDOWS_UNC_URL):
processed_url = otio.url_utils.filepath_from_url(url)
self.assertEqual(WINDOWS_UNC_PATH, processed_url)
self.assertEqual(processed_url, WINDOWS_UNC_PATH)

def test_posix_urls(self):
for url in (POSIX_ENCODED_URL, POSIX_URL, POSIX_LOCALHOST_URL):
processed_url = otio.url_utils.filepath_from_url(url)
self.assertEqual(POSIX_PATH, processed_url)
self.assertEqual(processed_url, POSIX_PATH)


if __name__ == "__main__":
Expand Down

0 comments on commit 403721c

Please sign in to comment.