Skip to content

Commit

Permalink
test: fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Feb 15, 2024
1 parent 7a46b5c commit 9c539a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/iriTemplate.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { deepStrictEqual, strictEqual } from 'node:assert'
import { deepStrictEqual, strictEqual, deepEqual } from 'node:assert'
import express from 'express'
import rdf from '@zazuko/env-node'
import request from 'supertest'
Expand Down Expand Up @@ -333,7 +333,7 @@ describe('middleware/iriTemplate', () => {

// then
const boundTerm = rdf.clownface({ dataset }).out().term
deepStrictEqual(boundTerm, rdf.literal('5.5', rdf.ns.xsd.decimal))
deepEqual(boundTerm, rdf.literal('5.5', rdf.ns.xsd.decimal))
})

it('should parse tagged literal', async () => {
Expand Down

0 comments on commit 9c539a7

Please sign in to comment.