Skip to content

Commit

Permalink
Fix number of timezones after ion-java upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
valenad1 committed May 2, 2024
1 parent cead281 commit c0960fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def h2oget_timezone():
timezones = h2o.list_timezones()
assert_is_type(timezones, H2OFrame)

assert timezones.nrow == 467, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.nrow == 459, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.ncol == 1, "h2o.get_timezone() returns frame with wrong column number."

if __name__ == "__main__":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def h2olist_timezones():
timezones = h2o.list_timezones()
assert_is_type(timezones, H2OFrame)

assert timezones.nrow == 467, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.nrow == 459, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.ncol == 1, "h2o.get_timezone() returns frame with wrong column number."


Expand Down

0 comments on commit c0960fb

Please sign in to comment.