Skip to content

Commit 03a0b48

Browse files
committed
Increase fibonacci
1 parent 190adf5 commit 03a0b48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/perf-test/OnyxUtils.perf-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ describe('OnyxUtils', () => {
742742
if (num === 2) return 1;
743743
return fibonacci(num - 1) + fibonacci(num - 2);
744744
}
745-
fibonacci(15);
745+
fibonacci(30);
746746
const callback = createDeferredTask();
747747
subscriptionID = OnyxUtils.subscribeToKey({
748748
key: collectionKey,

0 commit comments

Comments
 (0)