Merge pull request #13110 from eltociear/patch-1

fix typo in  resource-and-context-contextmodule
This commit is contained in:
Tobias Koppers 2022-01-21 18:33:43 +01:00 committed by GitHub
commit 6fa6e30254
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ it("should ignore context modules that match resource regex and context", functi
}).toThrowError();
});
it("should not ignore context modules that dont match the resource", function() {
it("should not ignore context modules that do not match the resource", function() {
const folderBContext = function(mod) {
require("./folder-b/" + mod);
};
@ -21,7 +21,7 @@ it("should not ignore context modules that dont match the resource", function()
}).not.toThrowError();
});
it("should not ignore context modules that dont match the context", function() {
it("should not ignore context modules that do not match the context", function() {
const folderBContext = function(mod) {
require("./folder-a/" + mod);
};