We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da48b76 commit f1052c0Copy full SHA for f1052c0
test/pytest/test_filters.py
@@ -488,16 +488,16 @@ def test_rankFilter1d():
488
# mode=mode,
489
# cval=constantValue,
490
# )
491
- print(data)
492
- print(rank)
493
- print(kernalSize)
494
- print(mode)
495
- print(constantValue)
496
- print(np.ones(
+ print(f"data = {data}")
+ print(f"rank = {rank}")
+ print(f"footprint = {np.ones(
497
[
498
kernalSize,
499
]
500
- ))
+ )}")
+ print(f"mode = {mode}")
+ print(f"constantValue = {constantValue}")
+
501
# assert np.array_equal(dataOutC, dataOutPy)
502
503
0 commit comments