From a74531cea7ac687b2065ed2d8fa60c8506575a2d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 28 Jun 2026 13:26:04 -0400 Subject: [PATCH] [tests] Fix icon test --- __tests__/components/PlaybackControls.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/components/PlaybackControls.test.js b/__tests__/components/PlaybackControls.test.js index 47f6bce6..0740deac 100644 --- a/__tests__/components/PlaybackControls.test.js +++ b/__tests__/components/PlaybackControls.test.js @@ -55,7 +55,7 @@ function findSmartQueueButton(renderer) { ? btn.props.children : [btn.props.children]; return children.some( - (child) => child.props && child.props.name === 'auto_awesome', + (child) => child.props && child.props.name === 'magic', ); }); }