Skip to content

Commit

Permalink
adapt fill_val definition
Browse files Browse the repository at this point in the history
  • Loading branch information
bkremmli committed Sep 24, 2024
1 parent 11cf080 commit 03ec1fe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions satpy/tests/reader_tests/test_mviri_l1b_fiduceo_nc.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from __future__ import annotations

import os
import sys
from unittest import mock

import dask.array as da
Expand All @@ -45,7 +44,7 @@
# The following fixtures are not defined in this file, but are used and injected by Pytest:
# - request

fill_val = min(sys.maxsize, 4294967295) # FillValue defined to be windows-compatible
fill_val = np.uint32(4294967295) # FillValue defined to be windows-compatible

attrs_exp: dict = {
"platform": "MET7",
Expand Down

0 comments on commit 03ec1fe

Please sign in to comment.