Skip to content

Commit

Permalink
fix: correct operator for coffeescript (#4552)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddsriv committed Dec 14, 2023
1 parent 7c61694 commit 84cf046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist-tools/test/browser-builder.mocha.spec.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe 'ServiceCollector', ->
it 'accepts "all" for all services', ->
add 'all'
Object.keys(helpers.AWS).forEach (name) ->
if helpers.AWS[name].serviceIdentifier && name !== 'NeptuneGraph'
if helpers.AWS[name].serviceIdentifier && name != 'NeptuneGraph'
assertServiceAdded(name)

it 'throws an error if the service does not exist', ->
Expand Down

0 comments on commit 84cf046

Please sign in to comment.