Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ron-gal committed Jan 16, 2024
1 parent 04ea661 commit 237525f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/unit/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -2106,6 +2106,16 @@ def test__create_row_request_with_limit():
assert result == expected_result


def test__create_row_request_with_reversed():
from google.cloud.bigtable.table import _create_row_request

table_name = "table_name"
reversed = True
result = _create_row_request(table_name, reversed=reversed)
expected_result = _ReadRowsRequestPB(table_name=table_name, reversed=reversed)
assert result == expected_result


def test__create_row_request_with_row_set():
from google.cloud.bigtable.table import _create_row_request
from google.cloud.bigtable.row_set import RowSet
Expand Down

0 comments on commit 237525f

Please sign in to comment.