Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 0f9c6d7

Browse files
committed
Merge pull request #233 from appirio-tech/tom-ui-review-fixes
fix tests
2 parents 5635678 + 31ae371 commit 0f9c6d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/filters/filters.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ describe('filters', function() {
1919
describe('track filter', function() {
2020
it('should handle strings', function() {
2121
expect(trackFilter('DATA_SCIENCE')).to.equal('Data Science');
22-
expect(trackFilter('DEVELOP')).to.equal('Develop');
22+
expect(trackFilter('DEVELOP')).to.equal('DEVELOPMENT');
2323
expect(trackFilter('FIRST_2_FINISH')).to.equal('First2Finish');
2424
});
2525

2626
it('should handle arrays', function() {
27-
expect(trackFilter(['DATA_SCIENCE', 'DEVELOP'])).to.include('Develop');
27+
expect(trackFilter(['DATA_SCIENCE', 'DEVELOP'])).to.include('DEVELOPMENT');
2828
});
2929
});
3030

0 commit comments

Comments
 (0)