Skip to content

Commit

Permalink
Rename test names to descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
masayuki038 committed Oct 8, 2023
1 parent eb3601e commit dd4b22f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/query_runner/test_influx_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
raw_no_rows = {"series": [{"name": "typetest", "columns": ["time", "k1", "v1", "v2"], "values": []}]}


def test_result():
def test_influxdb_result_types_with_rows():
result = ResultSet(raw)
transformed = _transform_result([result])
expected = {
Expand All @@ -43,7 +43,7 @@ def test_result():
assert json.loads(transformed) == expected


def test_no_rows_result():
def test_influxdb_result_types_with_no_rows_are_string():
result = ResultSet(raw_no_rows)
transformed = _transform_result([result])
expected = {
Expand Down

0 comments on commit dd4b22f

Please sign in to comment.