We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a58e93 commit b8f603bCopy full SHA for b8f603b
test/N3Util-test.js
@@ -119,7 +119,7 @@ describe('Util', () => {
119
});
120
121
it('does not match a blank node', () => {
122
- expect(Util.isNamedNode(blankNode('x'))).toBe(false);
+ expect(Util.isVariable(blankNode('x'))).toBe(false);
123
124
125
it('does not match null', () => {
@@ -145,11 +145,11 @@ describe('Util', () => {
145
146
147
148
- expect(Util.isVariable(null)).toBe(false);
+ expect(Util.isDefaultGraph(null)).toBe(false);
149
150
151
it('does not match undefined', () => {
152
- expect(Util.isVariable(undefined)).toBe(false);
+ expect(Util.isDefaultGraph(undefined)).toBe(false);
153
154
155
0 commit comments