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

Commit 0f02ec3

Browse files
committed
Merge pull request #241 from appirio-tech/tom-fix-tests-settings
fixed broken tests
2 parents 453da5d + be50710 commit 0f02ec3

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('DEVELOPMENT');
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('DEVELOPMENT');
27+
expect(trackFilter(['DATA_SCIENCE', 'DEVELOP'])).to.include('Development');
2828
});
2929
});
3030

0 commit comments

Comments
 (0)