Skip to content

Commit ec6419f

Browse files
committed
[Test] Clean up tests by removing unuse variables.
1 parent 49a8f2e commit ec6419f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/woql.spec.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ describe('woql queries', function () {
7777

7878
it('check the when method',function(){
7979

80-
const Update=WOQL.addClass("id");
81-
const Condition=WOQL.or(WOQL.triple("a", "b", "c"),WOQL.triple("1", "2", "3"));
82-
8380
const woqlObject=WOQL.when(true, WOQL.addClass("id"));
8481

8582
const woqlObjectChain=WOQL.when(true).addClass("id")
@@ -93,7 +90,7 @@ describe('woql queries', function () {
9390
]
9491
};
9592

96-
//expect(woqlObject.json()).to.eql(jsonObj);
93+
expect(woqlObject.json()).to.eql(jsonObj);
9794
expect(woqlObjectChain.json()).to.eql(jsonObj);
9895

9996
})

0 commit comments

Comments
 (0)