From 9c1890baa6d92193622452496306ce21d95067dd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 14 Jul 2026 10:32:35 +0200 Subject: [PATCH] Update test cases for combining patterns and session scenes --- tests/ableton-song.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/ableton-song.test.ts b/tests/ableton-song.test.ts index 18580d6..a4a65c0 100644 --- a/tests/ableton-song.test.ts +++ b/tests/ableton-song.test.ts @@ -184,8 +184,7 @@ test('combines genuine Session scenes, orphan patterns and the repeated Song Arr ['01', 'scene', ['a', 'b', 'c', 'd']], ['02', 'scene', ['a', 'b', 'c', 'd']], ['B PATTERN 01', 'pattern', ['b']], - ['A PATTERN 03', 'pattern', ['a']], - ['C PATTERN 03', 'pattern', ['c']], + ['PATTERN 03 (A/C)', 'pattern', ['a', 'c']], ], ); assert.deepEqual( @@ -234,7 +233,7 @@ test('combines genuine Session scenes, orphan patterns and the repeated Song Arr ); assert.deepEqual( c0?.lane?.sessionClips.map((clip) => clip.sceneIndex), - [4], + [3], ); assert.deepEqual(c0?.lane?.arrangementClips, []); });