We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9c740 commit 9301bf0Copy full SHA for 9301bf0
tests/test_core.py
@@ -237,8 +237,8 @@ def test_jsonb_json():
237
"stream" in schema_message
238
and schema_message["stream"] == altered_table_name
239
):
240
- assert "object" in schema_message["schema"]["properties"]["column_jsonb"]["type"]
241
- assert "object" in schema_message["schema"]["properties"]["column_json"]["type"]
+ assert schema_message["schema"]["properties"]["column_jsonb"] == {}
+ assert schema_message["schema"]["properties"]["column_json"] == {}
242
assert test_runner.records[altered_table_name][0] == {
243
"column_jsonb": {"foo": "bar"},
244
"column_json": {"baz": "foo"}
0 commit comments