File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export interface PageRouteRequestHandlerOptions<Schema extends SchemaDef> extend
3333 */
3434export interface AppRouteRequestHandlerOptions < Schema extends SchemaDef > extends CommonAdapterOptions < Schema > {
3535 /**
36- * Callback method for getting a Prisma instance for the given request.
36+ * Callback for getting a ZenStackClient for the given request.
3737 */
3838 getClient : ( req : NextRequest ) => ClientContract < Schema > | Promise < ClientContract < Schema > > ;
3939
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ model M {
188188 } ;
189189
190190 await makeTestClient ( '/m/create' , makeClientOptions )
191- . post ( '/m/create ' )
191+ . post ( '/' )
192192 . send ( { data : { value : 0 } } )
193193 . expect ( 403 )
194194 . expect ( ( resp ) => {
You can’t perform that action at this time.
0 commit comments