Skip to content

Commit

Permalink
client-test-suite: table => tabling
Browse files Browse the repository at this point in the history
  • Loading branch information
cgay committed Aug 29, 2021
1 parent 51bc507 commit fe196e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/tests/http-client-test-suite.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ define test test-convert-headers-method ()
headers := convert-headers(#(#("k1", "v1"), #("k2", "v2")));
check-instance?("<header-table> from a <sequence>", <header-table>, headers);

let h = table(<string-table>, "k1" => "v1", "k2" => "v2");
let h = tabling(<string-table>, "k1" => "v1", "k2" => "v2");
headers := convert-headers(h);
check-instance?("<header-table> from a <table>", <header-table>, headers);
end test test-convert-headers-method;
Expand Down

0 comments on commit fe196e5

Please sign in to comment.