@@ -108,6 +108,11 @@ def test_workflow_minimal_args(self) -> None:
108108 "for column column_with_unusual_type. "
109109 "Setting this column to NULL always, "
110110 "you may want to configure a row generator for it instead.\n "
111+ "Unsupported SQLAlchemy type "
112+ "<class 'sqlalchemy.dialects.postgresql.types.BIT'> "
113+ "for column column_with_unusual_type_and_length. "
114+ "Setting this column to NULL always, "
115+ "you may want to configure a row generator for it instead.\n "
111116 "A unique constraint (ab_uniq) isn't fully covered by one "
112117 "row generator (['a']). Enforcement of the constraint may not work.\n "
113118 "A unique constraint (ab_uniq) isn't fully covered by one "
@@ -267,6 +272,11 @@ def test_workflow_maximal_args(self) -> None:
267272 "<class 'sqlalchemy.dialects.postgresql.types.CIDR'> "
268273 "for column column_with_unusual_type. "
269274 "Setting this column to NULL always, "
275+ "you may want to configure a row generator for it instead.\n "
276+ "Unsupported SQLAlchemy type "
277+ "<class 'sqlalchemy.dialects.postgresql.types.BIT'> "
278+ "for column column_with_unusual_type_and_length. "
279+ "Setting this column to NULL always, "
270280 "you may want to configure a row generator for it instead.\n " ,
271281 completed_process .stderr .decode ("utf-8" ),
272282 )
0 commit comments