Skip to content

Commit

Permalink
Fix failed test case
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushRedHat committed Jan 9, 2024
1 parent a12c7be commit 30064a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,15 +163,15 @@ class Generator {
}

/**
* Check if the Registry Options is present or not.
* Check if the Registry Option is present or not.
*
* @private
* @param {Object} registryOption Registry Options.
* @return {boolean}
*/

verifyRegistryOption(registryOption) {
return registryOption === null;
return registryOption !== null;
}

/**
Expand Down

0 comments on commit 30064a4

Please sign in to comment.