Skip to content

Commit 476a47e

Browse files
committed
fix: update test label to reflect new function results
1 parent fcad8fa commit 476a47e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/algorithms/sets/longest-increasing-subsequence/__test__/dpLongestIncreasingSubsequence.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import dpLongestIncreasingSubsequence from '../dpLongestIncreasingSubsequence';
22

33
describe('dpLongestIncreasingSubsequence', () => {
4-
it('should find longest increasing subsequence length', () => {
4+
it('should find longest increasing subsequence', () => {
55
expect(dpLongestIncreasingSubsequence([
66
9, 8, 7, 6, 5, 4, 3, 2, 1, 0,
77
])).toStrictEqual([9]);

0 commit comments

Comments
 (0)