Commit bcb67ca
committed
Fix final Pydantic v2 test failure for ColumnName wrapper
Fixed assertion in test_create_table_request_minimal:
- Changed: assert table.columns[0].name == "id"
- To: assert table.columns[0].name.root == "id"
ColumnName is also a Pydantic v2 wrapped type that requires .root accessor.
All 46 tests now pass!1 parent e13765c commit bcb67ca
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | | - | |
| 85 | + | |
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
| |||
0 commit comments