Skip to content

Commit

Permalink
lowercase darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
pauladkisson committed May 1, 2024
1 parent 56e9f34 commit a7c6327
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_scan_image_tiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import platform

is_m_series_mac = platform.system() == "Darwin" and platform.machine() == "arm64"
is_m_series_mac = platform.system() == "darwin" and platform.machine() == "arm64"
if (
is_m_series_mac
): # Remove this check once scanimage tiff reader is available on ARM -- see https://gitlab.com/vidriotech/scanimagetiffreader-python/-/issues/31
Expand Down
2 changes: 1 addition & 1 deletion tests/test_scanimage_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import platform

is_m_series_mac = platform.system() == "Darwin" and platform.machine() == "arm64"
is_m_series_mac = platform.system() == "darwin" and platform.machine() == "arm64"
if (
is_m_series_mac
): # Remove this check once scanimage tiff reader is available on ARM -- see https://gitlab.com/vidriotech/scanimagetiffreader-python/-/issues/31
Expand Down
2 changes: 1 addition & 1 deletion tests/test_scanimagetiffimagingextractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import platform

is_m_series_mac = platform.system() == "Darwin" and platform.machine() == "arm64"
is_m_series_mac = platform.system() == "darwin" and platform.machine() == "arm64"
if (
is_m_series_mac
): # Remove this check once scanimage tiff reader is available on ARM -- see https://gitlab.com/vidriotech/scanimagetiffreader-python/-/issues/31
Expand Down

0 comments on commit a7c6327

Please sign in to comment.