Skip to content

Commit ea2d7b3

Browse files
committed
test: fix, change sprite and sound in smalruby
1 parent 57133d8 commit ea2d7b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/sounds.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,11 @@ describe('Working with sounds', () => {
175175
await clickText('Sounds');
176176
const el = await findByXpath('//button[@aria-label="Choose a Sound"]');
177177
await el.sendKeys(Key.chord(cmdCtrl, 'a')); // Select all
178-
await findByText('0.85', scope.soundsTab); // Meow sound duration
178+
await findByText('0.59', scope.soundsTab); // Meow sound duration
179179
await el.sendKeys(Key.DELETE);
180180
await findByText('0.00', scope.soundsTab); // Sound is now empty
181181
await el.sendKeys(Key.chord(cmdCtrl, 'z')); // undo
182-
await findByText('0.85', scope.soundsTab); // Meow sound is back
182+
await findByText('0.59', scope.soundsTab); // Meow sound is back
183183
await el.sendKeys(Key.chord(cmdCtrl, Key.SHIFT, 'z')); // redo
184184
await findByText('0.00', scope.soundsTab); // Sound is empty again
185185

0 commit comments

Comments
 (0)