Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Masar committed Feb 16, 2024
1 parent 87f70b5 commit bcd36b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/services/Users.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ describe('Users', function() {
expect(john.Id).not.to.be.undefined;
expect(john.PersonType).to.equal(PersonType.Natural);
expect(john.TermsAndConditionsAccepted).to.be.false;
expect(john.UserCategory).to.equal('UNKNOWN');
expect(john.UserCategory).to.equal('OWNER');
});

it('Create Legal', function() {
expect(matrix.Id).not.to.be.undefined;
expect(matrix.PersonType).to.equal(PersonType.Legal);
expect(matrix.TermsAndConditionsAccepted).to.be.false;
expect(matrix.UserCategory).to.equal('UNKNOWN');
expect(matrix.UserCategory).to.equal('OWNER');
});

it('Create Natural Payer', function(){
Expand Down

0 comments on commit bcd36b3

Please sign in to comment.