Skip to content
Snippets Groups Projects
Commit 03e94b42 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

test freq range corrected

parent 82e4219c
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ TESTFLAGGERS = [
@pytest.fixture(scope='module')
def break_data():
index = pd.date_range(start='1.1.2011 00:00:00', end='1.1.2011 00:03:00', freq='5min')
index = pd.date_range(start='1.1.2011 00:00:00', end='1.1.2011 03:00:00', freq='5min')
break_series = pd.Series(np.linspace(0, 1, index.size), index=index, name='break_data')
break_series.iloc[5:15] = +100
flag_assertion = list(range(5, 25))
......
......@@ -21,7 +21,7 @@ TESTFLAGGERS = [
@pytest.fixture(scope='module')
def constants_data():
index = pd.date_range(start='1.1.2011 00:00:00', end='1.1.2011 00:03:00', freq='5min')
index = pd.date_range(start='1.1.2011 00:00:00', end='1.1.2011 03:00:00', freq='5min')
constants_series = pd.Series(np.linspace(-50, 50, index.size), index=index, name='constants_data')
constants_series.iloc[5:25] = 0
# constants_series.iloc[1000] = -100
......
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