Skip to content

Commit

Permalink
[squash] fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kralka committed Feb 3, 2025
1 parent 0f5a3de commit 58ef494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/io/shard/test_shard_write_and_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def test_fb_all_dtypes_np(tmp_path):
np.random.uniform(-5, 5, size=(E, 16)).astype(np.float32),
"a_float64":
np.random.uniform(-5, 5, size=(E, 1, 5)).astype(np.float64),
# The type np.float128 is supported on all platforms.
# The type np.float128 is not supported on all platforms.
#"a_float128":
# np.random.uniform(-5, 5, size=(E, 5, 3)).astype(np.float128),
}
Expand Down Expand Up @@ -240,7 +240,7 @@ def test_fb_all_dtypes_fb(tmp_path):
np.random.uniform(-5, 5, size=(E, 16)).astype(np.float32),
"a_float64":
np.random.uniform(-5, 5, size=(E, 1, 5)).astype(np.float64),
# The type np.float128 is supported on all platforms.
# The type np.float128 is not supported on all platforms.
#"a_float128":
# np.random.uniform(-5, 5, size=(E, 5, 3)).astype(np.float128),
}
Expand Down

0 comments on commit 58ef494

Please sign in to comment.