Skip to content

Commit

Permalink
Fix test still referencing allowString.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eyas committed May 18, 2020
1 parent 9cd5bb3 commit 35c2c0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/helpers/make_class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import {UrlNode} from '../../src/triples/types';
import {Class, ClassMap} from '../../src/ts/class';

export function makeClass(url: string, allowString = false): Class {
return new Class(UrlNode.Parse(url), allowString);
export function makeClass(url: string): Class {
return new Class(UrlNode.Parse(url));
}

export function makeClassMap(...classes: Class[]): ClassMap {
Expand Down

0 comments on commit 35c2c0d

Please sign in to comment.