Skip to content
Snippets Groups Projects
Commit cf71c209 authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

Output check: meta data now more forgiving; check different grids instead

parent cc791d2a
No related branches found
No related tags found
1 merge request!286Add mask to Info object
Pipeline #244513 failed with stages
in 2 minutes and 39 seconds
......@@ -26,6 +26,7 @@ from finam import (
Info,
Input,
NoGrid,
EsriGrid,
Output,
TimeComponent,
)
......@@ -162,7 +163,7 @@ class TestOutput(unittest.TestCase):
counter = 0
t = datetime(2000, 1, 1)
info = Info(time=t, grid=NoGrid(), meta={"test": 0})
wrong_info = Info(time=t, grid=NoGrid(), meta={"test": 5})
wrong_info = Info(time=t, grid=EsriGrid(2, 2), meta={"test": 5})
def callback(_clr, _time):
nonlocal counter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment