@@ -642,7 +642,7 @@ describe('express.urlencoded()', function () {
642642 this . app = app
643643 } )
644644
645- it ( 'should presist store' , function ( done ) {
645+ it ( 'should persist store' , function ( done ) {
646646 request ( this . app )
647647 . post ( '/' )
648648 . set ( 'Content-Type' , 'application/x-www-form-urlencoded' )
@@ -653,7 +653,7 @@ describe('express.urlencoded()', function () {
653653 . end ( done )
654654 } )
655655
656- it ( 'should presist store when unmatched content-type' , function ( done ) {
656+ it ( 'should persist store when unmatched content-type' , function ( done ) {
657657 request ( this . app )
658658 . post ( '/' )
659659 . set ( 'Content-Type' , 'application/fizzbuzz' )
@@ -663,7 +663,7 @@ describe('express.urlencoded()', function () {
663663 . end ( done )
664664 } )
665665
666- it ( 'should presist store when inflated' , function ( done ) {
666+ it ( 'should persist store when inflated' , function ( done ) {
667667 var test = request ( this . app ) . post ( '/' )
668668 test . set ( 'Content-Encoding' , 'gzip' )
669669 test . set ( 'Content-Type' , 'application/x-www-form-urlencoded' )
@@ -674,7 +674,7 @@ describe('express.urlencoded()', function () {
674674 test . end ( done )
675675 } )
676676
677- it ( 'should presist store when inflate error' , function ( done ) {
677+ it ( 'should persist store when inflate error' , function ( done ) {
678678 var test = request ( this . app ) . post ( '/' )
679679 test . set ( 'Content-Encoding' , 'gzip' )
680680 test . set ( 'Content-Type' , 'application/x-www-form-urlencoded' )
@@ -684,7 +684,7 @@ describe('express.urlencoded()', function () {
684684 test . end ( done )
685685 } )
686686
687- it ( 'should presist store when limit exceeded' , function ( done ) {
687+ it ( 'should persist store when limit exceeded' , function ( done ) {
688688 request ( this . app )
689689 . post ( '/' )
690690 . set ( 'Content-Type' , 'application/x-www-form-urlencoded' )
0 commit comments