@@ -183,12 +183,12 @@ test('should check fastify dependency graph - plugin', t => {
183183 const fastify = Fastify ( )
184184
185185 fastify . register ( fp ( ( fastify , opts , next ) => next ( ) , {
186- fastify : '3 .x' ,
186+ fastify : '4 .x' ,
187187 name : 'plugin1-name'
188188 } ) )
189189
190190 fastify . register ( fp ( ( fastify , opts , next ) => next ( ) , {
191- fastify : '3 .x' ,
191+ fastify : '4 .x' ,
192192 name : 'test' ,
193193 dependencies : [ 'plugin1-name' , 'plugin2-name' ]
194194 } ) )
@@ -203,12 +203,12 @@ test('should check fastify dependency graph - decorate', t => {
203203 const fastify = Fastify ( )
204204
205205 fastify . decorate ( 'plugin1' , fp ( ( fastify , opts , next ) => next ( ) , {
206- fastify : '3 .x' ,
206+ fastify : '4 .x' ,
207207 name : 'plugin1-name'
208208 } ) )
209209
210210 fastify . register ( fp ( ( fastify , opts , next ) => next ( ) , {
211- fastify : '3 .x' ,
211+ fastify : '4 .x' ,
212212 name : 'test' ,
213213 decorators : { fastify : [ 'plugin1' , 'plugin2' ] }
214214 } ) )
@@ -223,12 +223,12 @@ test('should check fastify dependency graph - decorateReply', t => {
223223 const fastify = Fastify ( )
224224
225225 fastify . decorateReply ( 'plugin1' , fp ( ( fastify , opts , next ) => next ( ) , {
226- fastify : '3 .x' ,
226+ fastify : '4 .x' ,
227227 name : 'plugin1-name'
228228 } ) )
229229
230230 fastify . register ( fp ( ( fastify , opts , next ) => next ( ) , {
231- fastify : '3 .x' ,
231+ fastify : '4 .x' ,
232232 name : 'test' ,
233233 decorators : { reply : [ 'plugin1' , 'plugin2' ] }
234234 } ) )
0 commit comments