Update inccorect jsdoc in mocha tests (#4707)

This commit is contained in:
Monica Kozbial
2021-03-19 16:33:41 -07:00
committed by GitHub
parent deab5fdd69
commit 7eabb8e8a3
8 changed files with 14 additions and 14 deletions

View File

@@ -45,14 +45,14 @@ suite('Text Input Fields', function() {
var defaultFieldValue = '';
/**
* Asserts that the field property values are set to default.
* @param {!Blockly.FieldNumber} field The field to check.
* @param {!Blockly.FieldTextInput} field The field to check.
*/
var assertFieldDefault = function(field) {
testHelpers.assertFieldValue(field, defaultFieldValue);
};
/**
* Asserts that the field properties are correct based on the test case.
* @param {!Blockly.FieldNumber} field The field to check.
* @param {!Blockly.FieldTextInput} field The field to check.
* @param {!FieldValueTestCase} testCase The test case.
*/
var validTestCaseAssertField = function(field, testCase) {