We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 542a28f commit a4018feCopy full SHA for a4018fe
packages/wasm-miniscript/test/test.ts
@@ -45,11 +45,7 @@ describe("Descriptor fixtures", function () {
45
if (fixture.checksumRequired === false) {
46
descriptorString = removeChecksum(descriptorString);
47
}
48
- let expected = fixture.descriptor;
49
- if (i === 56 || i === 57) {
50
- // for reasons I do not really understand, the `a:and_n` gets converted into `a:and_b` for these
51
- expected = expected.replace("and_n", "and_b");
52
- }
+ const expected = fixture.descriptor;
53
assert.strictEqual(descriptorString, expected);
54
55
assert.doesNotThrow(() =>
0 commit comments