Transform 'let' in 'const' where needs be

This commit is contained in:
Étienne Boisseau-Sierra
2018-08-07 11:23:28 +01:00
parent deb698c09e
commit 00407bdee5
25 changed files with 34 additions and 34 deletions
+2 -2
View File
@@ -15,7 +15,7 @@
// See https://en.wikipedia.org/wiki/Pig_Latin for more details.
let pigLatin = require("./pigLatin.js");
const pigLatin = require("./pigLatin.js");
describe('#translate', function() {
it('translates a word beginning with a vowel', function() {
@@ -61,4 +61,4 @@ describe('#translate', function() {
s = pigLatin.translate("the quick brown fox");
expect(s).toEqual("ethay ickquay ownbray oxfay");
});
});
});