Skip to content

Commit 7149d02

Browse files
fix(utxo-core): correct path name for fixtures
TICKET: WP-5599
1 parent 1d0bbae commit 7149d02

File tree

1 file changed

+1
-1
lines changed
  • modules/utxo-core/test/descriptor/psbt

1 file changed

+1
-1
lines changed

modules/utxo-core/test/descriptor/psbt/psbt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function normalize(v: unknown): unknown {
4545
}
4646

4747
async function assertEqualsFixture(t: string, filename: string, value: unknown) {
48-
filename = __dirname + '/../../../../test/descriptor/psbt/fixtures/' + t + '.' + filename;
48+
filename = __dirname + '/../../descriptor/psbt/fixtures/' + t + '.' + filename;
4949
const nv = normalize(value);
5050
assert.deepStrictEqual(nv, await getFixture(filename, nv));
5151
}

0 commit comments

Comments
 (0)