mol_text_distance 0.0.1335 → 0.0.1337

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mol_text_distance",
3
- "version": "0.0.1335",
3
+ "version": "0.0.1337",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
package/web.test.js CHANGED
@@ -1315,16 +1315,16 @@ var $;
1315
1315
  $mol_assert_unique([1], [2], [3]);
1316
1316
  },
1317
1317
  'two must be alike'() {
1318
- $mol_assert_like([3], [3]);
1318
+ $mol_assert_equal([3], [3]);
1319
1319
  },
1320
1320
  'three must be alike'() {
1321
- $mol_assert_like([3], [3], [3]);
1321
+ $mol_assert_equal([3], [3], [3]);
1322
1322
  },
1323
1323
  'two object must be alike'() {
1324
- $mol_assert_like({ a: 1 }, { a: 1 });
1324
+ $mol_assert_equal({ a: 1 }, { a: 1 });
1325
1325
  },
1326
1326
  'three object must be alike'() {
1327
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
1327
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
1328
1328
  },
1329
1329
  });
1330
1330
  })($ || ($ = {}));