Skip to content

Commit db6cc00

Browse files
committed
[skip ci] - Timestream tests addition
1 parent 7f2050c commit db6cc00

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_timestream.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ def test_list_tables(timestream_database_and_table):
277277
table=f"{timestream_database_and_table}_2",
278278
memory_retention_hours=1,
279279
magnetic_retention_days=1,
280+
tags={"foo": "boo", "bar": "xoo"},
280281
)
281282

282283
tables_in_db = wr.timestream.list_tables(database=timestream_database_and_table)
@@ -320,7 +321,7 @@ def test_timestamp_measure_column(timestream_database_and_table):
320321
{
321322
"time": [datetime.now()] * 3,
322323
"dim0": ["foo", "boo", "bar"],
323-
"dim1": [1, 2, 3],
324+
"dim1": [1, None, 3],
324325
"measure_f": [1.1, 1.2, 1.3],
325326
"measure_t": [datetime.now(dt.timezone.utc)] * 3,
326327
}

0 commit comments

Comments
 (0)