Skip to content

Commit

Permalink
fix import module name in failing test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
sumn2u committed Apr 12, 2024
1 parent fec555f commit a756458
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/Cosine.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Cosine from '../lib/cosine';
import Cosine from '../lib/Cosine';

describe('Cosine Similarity', () => {
it('calculates similarity between identical strings', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/Jaro.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Jaro from '../lib/jaro'
import Jaro from '../lib/Jaro'

describe('Jaro Similarity', () => {
test('calculates similarity for identical strings', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/Levenshtein.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Levenshtein from '../lib/levenshtein';
import Levenshtein from '../lib/Levenshtein';

describe('Levenshtein Distance', () => {
test('calculates distance for identical strings', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/Trigram.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Trigram from '../lib/trigram';
import Trigram from '../lib/Trigram';

describe('Trigram Calculations', () => {
test('generates trigrams from a string', () => {
Expand Down

0 comments on commit a756458

Please sign in to comment.