Skip to content

Commit

Permalink
upd tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dhowe committed Nov 17, 2023
1 parent 1848794 commit 787fa97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/dist/lexicon-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ describe("Lexicon", function() {
expect(results.length > 1).to.be.true;
result = RiTa.randomWord(/^a/);
expect(/^a/.test(result)).to.be.true;
expect(result.length >= 3).to.be.true;
expect(result.length > 3).to.be.true;
result = RiTa.randomWord(/^apple$/);
expect(result).equal("apple");
result = RiTa.randomWord(/le/);
Expand Down

0 comments on commit 787fa97

Please sign in to comment.