Skip to content

Commit f9954dd

Browse files
authored
fix(test): remove duplicate word (#6456)
Signed-off-by: dufucun <[email protected]>
1 parent 5da5a11 commit f9954dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/app.router.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ describe('app.router', function () {
11561156
assert.strictEqual(app.get('/', function () { }), app)
11571157
})
11581158

1159-
it('should should not use disposed router/middleware', function (done) {
1159+
it('should not use disposed router/middleware', function (done) {
11601160
// more context: https://github.com/expressjs/express/issues/5743#issuecomment-2277148412
11611161

11621162
var app = express();

test/res.format.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ function test(app) {
237237
})
238238

239239
describe('when no match is made', function(){
240-
it('should should respond with 406 not acceptable', function(done){
240+
it('should respond with 406 not acceptable', function(done){
241241
request(app)
242242
.get('/')
243243
.set('Accept', 'foo/bar')

0 commit comments

Comments
 (0)