Skip to content

Commit 513fa31

Browse files
committed
Fixed failing unit tests
1 parent 9113a9d commit 513fa31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Utils-spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,15 @@ describe('Utils', () => {
128128

129129
describe('with exclude pattern', () => {
130130
it('pAssword', () => {
131-
expect(Utils.stringify(user, ['pAssword'])).to.equal('{"id":1,"name":"Blake","passwordResetToken":"a reset token","myPasswordValue":"123456","myPassword":"123456","customValue":"Password","value":{}}');
131+
expect(Utils.stringify(user, ['pAssword'])).to.equal('{"id":1,"name":"Blake","passwordResetToken":"a reset token","myPassword":"123456","myPasswordValue":"123456","customValue":"Password","value":{}}');
132132
});
133133

134134
it('*password', () => {
135135
expect(Utils.stringify(user, ['*password'])).to.equal('{"id":1,"name":"Blake","passwordResetToken":"a reset token","myPasswordValue":"123456","customValue":"Password","value":{}}');
136136
});
137137

138138
it('password*', () => {
139-
expect(Utils.stringify(user, ['password*'])).to.equal('{"id":1,"name":"Blake","myPasswordValue":"123456","myPassword":"123456","customValue":"Password","value":{}}');
139+
expect(Utils.stringify(user, ['password*'])).to.equal('{"id":1,"name":"Blake","myPassword":"123456","myPasswordValue":"123456","customValue":"Password","value":{}}');
140140
});
141141

142142
it('*password*', () => {

0 commit comments

Comments
 (0)