Skip to content

Commit

Permalink
Fix incorrect import of compiled files in tests (#572)
Browse files Browse the repository at this point in the history
This caused the tests to fail when run with a recent version of mocha/ts-node
  • Loading branch information
forty committed Mar 23, 2021
1 parent 5326b21 commit 2332a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-signatures.spec.ts
@@ -1,7 +1,7 @@
import { SAML } from "../lib/passport-saml/index.js";
import { SAML } from "../src/passport-saml";
import * as fs from "fs";
import * as sinon from "sinon";
import { SamlConfig } from "../lib/passport-saml/types.js";
import { SamlConfig } from "../src/passport-saml/types";
import assert = require("assert");

const cert = fs.readFileSync(__dirname + "/static/cert.pem", "ascii");
Expand Down

0 comments on commit 2332a85

Please sign in to comment.