Skip to content

Commit

Permalink
remove Tests from module name, phetsims/phet-io-wrappers#566
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Nov 6, 2023
1 parent 9a69b94 commit 3dbb15e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/accessibility/pdom/PDOMSiblingTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import PDOMPeer from './PDOMPeer.js';
// constants
const PIXEL_PADDING = 3;

QUnit.module( 'PDOMSiblingTests' );
QUnit.module( 'PDOMSibling' );

/**
* Gets the bounds of the DOMElement in the viewport in global coordinates.
Expand Down
2 changes: 1 addition & 1 deletion js/accessibility/pdom/PDOMUtilsTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import PDOMUtils from './PDOMUtils.js';

QUnit.module( 'AccessibilityUtilsTests' );
QUnit.module( 'AccessibilityUtils' );

// tests
QUnit.test( 'insertElements', assert => {
Expand Down
2 changes: 1 addition & 1 deletion js/accessibility/pdom/ParallelDOMTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const focusHighlight = new Rectangle( 0, 0, 10, 10 );

let canRunTests = true;

QUnit.module( 'ParallelDOMTests', {
QUnit.module( 'ParallelDOM', {
beforeEach: () => {

// A test can only be run when the document has focus because tests require focus/blur events. Browsers
Expand Down

0 comments on commit 3dbb15e

Please sign in to comment.