Skip to content

Commit 1207c11

Browse files
authored
Fixed wrong variable name on assertNotNullOrEmpty_
While testing the workflow, the ```gulp upload-latest --env=test``` step displayed a warning: src\tests\lib.testing.js line 68 col 24 'message' used out of scope. ‼ 1 warning
1 parent b7b7819 commit 1207c11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

import_export_development/src/tests/lib.testing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function assertNotNull_(value, opt_message) {
6565
* @param {string=} opt_message The message to include in the error
6666
*/
6767
function assertNotNullOrEmpty_(value, opt_message) {
68-
assertNotNull(value, message);
68+
assertNotNull(value, opt_message);
6969
if (value === '') {
7070
var message = opt_message || 'The value is empty.';
7171
throw new Error(message);

0 commit comments

Comments
 (0)