We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fcd121 commit d20f53dCopy full SHA for d20f53d
1 file changed
tests/unit/synapseclient/extensions/unit_test_curator.py
@@ -1772,12 +1772,14 @@ def test_get_list_column_type_from_js_property_fallback(self):
1772
"string_col": {"type": "string"},
1773
"int_col": {"type": "integer"},
1774
"bool_col": {"type": "boolean"},
1775
+ "number_col": {"type": "number"},
1776
}
1777
},
1778
[
1779
Column(name="string_col", column_type=ColumnType.MEDIUMTEXT),
1780
Column(name="int_col", column_type=ColumnType.INTEGER),
1781
Column(name="bool_col", column_type=ColumnType.BOOLEAN),
1782
+ Column(name="number_col", column_type=ColumnType.DOUBLE),
1783
],
1784
),
1785
0 commit comments