Skip to content

Commit 82eca01

Browse files
committed
Minor test edit: rename variable
1 parent fd94c5d commit 82eca01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/model/test_timeseries.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1044,9 +1044,9 @@ def test_timeseries_by_data_state_authorizations_as_user(
10441044
ts_2 = timeseries[1]
10451045

10461046
with CurrentUser(user_1):
1047-
timeseries_list = list(TimeseriesByDataState.get())
1048-
assert len(timeseries_list) == 1
1049-
assert timeseries_list[0].id == ts_2.id
1047+
tsbds_l = list(TimeseriesByDataState.get())
1048+
assert len(tsbds_l) == 1
1049+
assert tsbds_l[0].id == ts_2.id
10501050
tsbds = TimeseriesByDataState.get_by_id(ts_2.id)
10511051
tsbds.update(data_state_id=2)
10521052
db.session.commit()

0 commit comments

Comments
 (0)