Skip to content

Commit

Permalink
Adjust DynascaleManager test
Browse files Browse the repository at this point in the history
  • Loading branch information
arnautov-anton committed Sep 22, 2023
1 parent d9b54ec commit 91d9734
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ describe('DynascaleManager', () => {

cleanup?.();

expect(updateSubscription).toHaveBeenCalledWith(
expect(updateSubscription).toHaveBeenLastCalledWith(
'videoTrack',
{ 'session-id': { dimension: undefined } },
DebounceType.FAST,
Expand Down Expand Up @@ -278,7 +278,7 @@ describe('DynascaleManager', () => {

cleanup?.();

expect(updateSubscription).toHaveBeenCalledWith(
expect(updateSubscription).toHaveBeenLastCalledWith(
'videoTrack',
{ 'session-id': { dimension: undefined } },
DebounceType.FAST,
Expand Down Expand Up @@ -366,7 +366,7 @@ describe('DynascaleManager', () => {

cleanup?.();

expect(updateSubscription).toHaveBeenCalledWith(
expect(updateSubscription).toHaveBeenLastCalledWith(
'videoTrack',
{ 'session-id': { dimension: undefined } },
DebounceType.FAST,
Expand Down Expand Up @@ -436,7 +436,7 @@ describe('DynascaleManager', () => {

cleanup?.();

expect(updateSubscription).toHaveBeenCalledWith(
expect(updateSubscription).toHaveBeenLastCalledWith(
'videoTrack',
{ 'session-id': { dimension: undefined } },
DebounceType.FAST,
Expand Down

0 comments on commit 91d9734

Please sign in to comment.