@@ -118,7 +118,7 @@ async def test_collections_info(self, client):
118118
119119 collections = await client .query ('collections_info();' )
120120 self .assertEqual (len (collections ), 1 )
121- self .assertEqual (len (collections [0 ]), 8 )
121+ self .assertEqual (len (collections [0 ]), 9 )
122122
123123 self .assertIn ("collection_id" , collections [0 ])
124124 self .assertIn ("next_free_id" , collections [0 ])
@@ -127,6 +127,7 @@ async def test_collections_info(self, client):
127127 self .assertIn ("created_at" , collections [0 ])
128128 self .assertIn ("time_zone" , collections [0 ])
129129 self .assertIn ("default_deep" , collections [0 ])
130+ self .assertIn ("ano_types" , collections [0 ])
130131 self .assertIn ("commit_history" , collections [0 ])
131132
132133 self .assertTrue (isinstance (collections [0 ]["collection_id" ], int ))
@@ -136,6 +137,7 @@ async def test_collections_info(self, client):
136137 self .assertTrue (isinstance (collections [0 ]["created_at" ], int ))
137138 self .assertTrue (isinstance (collections [0 ]["time_zone" ], str ))
138139 self .assertTrue (isinstance (collections [0 ]["default_deep" ], int ))
140+ self .assertTrue (isinstance (collections [0 ]["ano_types" ], int ))
139141 self .assertEqual (collections [0 ]["commit_history" ], "disabled" )
140142
141143 # at least one info should be checked for a correct created_at info
0 commit comments