Skip to content

Commit

Permalink
fix(tests): ds keys;
Browse files Browse the repository at this point in the history
- Updated ds primary key numbers.
  • Loading branch information
JVickery-TBS committed Dec 9, 2024
1 parent 9b65844 commit bf7efc6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ckanext/xloader/tests/test_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ def test_load_with_no_strip_white(self, Session):
print(records)
assert records == [
(
4, # ds auto increment
1, # ds auto increment id / primary key
u"101002153891",
u"2017-07-06 23:38:43",
u"2017-07-21 08:30:00",
Expand Down Expand Up @@ -927,7 +927,7 @@ def test_load_with_no_strip_white(self, Session):
u"Citizens Connect App",
), # noqa
(
5, # ds auto increment
2, # ds auto increment id / primary key
u"101002153890",
u"2017-07-06 23:29:13",
u"2017-09-11 08:30:00",
Expand Down Expand Up @@ -959,7 +959,7 @@ def test_load_with_no_strip_white(self, Session):
u"Citizens Connect App",
), # noqa
(
6, # ds auto increment
3, # ds auto increment id / primary key
u"101002153889",
u"2017-07-06 23:24:20",
u"2017-09-11 08:30:00",
Expand Down Expand Up @@ -1657,7 +1657,7 @@ def test_load_with_no_strip_white(self, Session):
print(records)
assert records == [
(
4, # ds auto increment
1, # ds auto increment id / primary key
Decimal("101002153891"),
datetime.datetime(2017, 7, 6, 23, 38, 43),
datetime.datetime(2017, 7, 21, 8, 30),
Expand Down Expand Up @@ -1689,7 +1689,7 @@ def test_load_with_no_strip_white(self, Session):
u"Citizens Connect App",
), # noqa
(
5, # ds auto increment
2, # ds auto increment id / primary key
Decimal("101002153890"),
datetime.datetime(2017, 7, 6, 23, 29, 13),
datetime.datetime(2017, 9, 11, 8, 30),
Expand Down Expand Up @@ -1721,7 +1721,7 @@ def test_load_with_no_strip_white(self, Session):
u"Citizens Connect App",
), # noqa
(
6, # ds auto increment
3, # ds auto increment id / primary key
Decimal("101002153889"),
datetime.datetime(2017, 7, 6, 23, 24, 20),
datetime.datetime(2017, 9, 11, 8, 30),
Expand Down

0 comments on commit bf7efc6

Please sign in to comment.