mol_crypto_lib 0.1.1657 → 0.1.1659

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/node.test.js CHANGED
@@ -3384,7 +3384,7 @@ var $;
3384
3384
  }
3385
3385
  await $mol_wire_async(A).a();
3386
3386
  $mol_assert_equal(A.instances.length, 2);
3387
- $mol_assert_equal(A.instances[0] instanceof A);
3387
+ $mol_assert_equal(A.instances[0] instanceof A, true);
3388
3388
  $mol_assert_equal(A.instances[0], A.instances[1]);
3389
3389
  }
3390
3390
  });
@@ -4391,16 +4391,16 @@ var $;
4391
4391
  $mol_assert_unique([1], [2], [3]);
4392
4392
  },
4393
4393
  'two must be alike'() {
4394
- $mol_assert_like([3], [3]);
4394
+ $mol_assert_equal([3], [3]);
4395
4395
  },
4396
4396
  'three must be alike'() {
4397
- $mol_assert_like([3], [3], [3]);
4397
+ $mol_assert_equal([3], [3], [3]);
4398
4398
  },
4399
4399
  'two object must be alike'() {
4400
- $mol_assert_like({ a: 1 }, { a: 1 });
4400
+ $mol_assert_equal({ a: 1 }, { a: 1 });
4401
4401
  },
4402
4402
  'three object must be alike'() {
4403
- $mol_assert_like({ a: 1 }, { a: 1 }, { a: 1 });
4403
+ $mol_assert_equal({ a: 1 }, { a: 1 }, { a: 1 });
4404
4404
  },
4405
4405
  });
4406
4406
  })($ || ($ = {}));