Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
fix: date inclusivity
Browse files Browse the repository at this point in the history
  • Loading branch information
BobBorges committed Feb 6, 2024
1 parent d5995aa commit 54fdaf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/chairs.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def test_chair_nrs_in_range_for_year(self):
].unique()
excludes = []
if y < 1971:
if y < 1957:
if y <= 1957:
excludes = oor_year['1957']
elif y < 1959:
excludes = oor_year['1959']
Expand Down Expand Up @@ -346,7 +346,7 @@ def test_chair_hogs(self):
ch.append(dup)
print("\n--->>>>", dup)
print(df)
print(r["chamber"], last_end, rstart, type(last_end), type(rstart))
# print(r["chamber"], last_end, rstart, type(last_end), type(rstart))
print("IN TWO CHAMBERS")
continue
else:
Expand Down

0 comments on commit 54fdaf2

Please sign in to comment.