Skip to content

Commit

Permalink
Drop unecessary argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mati365 committed Nov 14, 2024
1 parent e25eb63 commit a7f19e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ckeditor5-core/tests/editor/utils/editorusagedata.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ describe( 'getEditorUsageData()', () => {

for ( const [ flag, osName ] of os ) {
it( `should detect ${ osName } OS`, async () => {
mockFlag( flag, true );
mockFlag( flag );

editor = await ClassicTestEditor.create( domElement, {} );

Expand All @@ -218,7 +218,7 @@ describe( 'getEditorUsageData()', () => {

for ( const [ flag, browser ] of browsers ) {
it( `should detect ${ browser } browser`, async () => {
mockFlag( flag, true );
mockFlag( flag );

editor = await ClassicTestEditor.create( domElement, {} );

Expand Down

0 comments on commit a7f19e5

Please sign in to comment.