Skip to content

Commit b4d855c

Browse files
committed
tests: fix import of module
1 parent 7245664 commit b4d855c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/jwt_io_args.plt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:- begin_tests(jwt_args).
22

3-
:- use_module(prolog/jwt_io).
3+
:- use_module(library(jwt_io)).
44

55
:- set_setting(jwt_io:keys, [
66
k{kid: 'atom', type: 'HMAC', algorithm: 'HS256', key: 'weak_password'}

tests/jwt_io_jwt.plt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:- use_module(library(settings)).
44
:- use_module(library(http/json)).
55

6-
:- use_module(prolog/jwt_io).
6+
:- use_module(library(jwt_io)).
77

88
:- set_setting(jwt_io:keys, [
99
k{kid: 'hmac256', type: 'HMAC', algorithm: 'HS256', key: 'weak_password'},

tests/jwt_io_pubpri.plt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:- use_module(library(settings)).
44
:- use_module(library(http/json)).
55

6-
:- use_module(prolog/jwt_io).
6+
:- use_module(library(jwt_io)).
77

88
:- set_setting(jwt_io:clock_tolerance, 30).
99

tests/jwt_io_unit.plt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:- use_module(library(settings)).
44
:- use_module(library(http/json)).
55

6-
:- use_module(prolog/jwt_io).
6+
:- use_module(library(jwt_io)).
77

88
test(get_key_file, Key = 'test 123\n\n---\n') :-
99
jwt_io:get_key_file('tests/test_file', Key).

0 commit comments

Comments
 (0)