Skip to content

Commit 3de9a21

Browse files
author
Swapnil Nagar
committed
Fixing Unit tests and Validate Release version
1 parent 6d54aeb commit 3de9a21

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
export const version = '4.7.1-preview';
4+
export const version = '4.7.2';
55

66
export const returnBindingKey = '$return';

test/converters/fromRpcTypedData.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,7 @@ describe('fromRpcTypedData - modelBindingData path', () => {
217217

218218
// Act & Assert
219219
expect(() => fromRpcTypedData(data)).to.throw(
220-
'Unable to create client. Please register the extensions library with your function app. ' +
221-
'Error: Factory not registered'
220+
'Please register the extensions library with your function app. ' + 'Error: Factory not registered'
222221
);
223222
});
224223

@@ -240,8 +239,7 @@ describe('fromRpcTypedData - modelBindingData path', () => {
240239

241240
// Act & Assert
242241
expect(() => fromRpcTypedData(data)).to.throw(
243-
'Unable to create client. Please register the extensions library with your function app. ' +
244-
'Error: Resolver not initialized'
242+
'Please register the extensions library with your function app. ' + 'Error: Resolver not initialized'
245243
);
246244
});
247245

0 commit comments

Comments
 (0)