Skip to content

Commit

Permalink
avoid some warnings in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zigaLuksic committed Aug 21, 2023
1 parent d50d125 commit 2657fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tasks/test_testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_generate_timestamp_feature_task(dummy_eopatch: EOPatch):
(FeatureType.DATA_TIMELESS, (83, 69, 1), int, UniformDistribution(-2, 5)),
(FeatureType.MASK, (10, 4, 16, 7), np.int8, UniformDistribution(-3, 7)),
(FeatureType.LABEL, (10, 271), bool, UniformDistribution(0, 1)),
(FeatureType.DATA, (7, 20, 31, 1), np.float32, NormalDistribution(-3, 1.5)),
(FeatureType.DATA, (10, 20, 31, 1), np.float32, NormalDistribution(-3, 1.5)),
(FeatureType.DATA_TIMELESS, (30, 61, 2), float, NormalDistribution(-3422.23, 1522)),
(FeatureType.DATA_TIMELESS, (83, 69, 10), int, NormalDistribution(-2, 10)),
],
Expand Down

0 comments on commit 2657fcd

Please sign in to comment.