wingbot 3.51.0 → 3.51.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Tester.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wingbot",
3
- "version": "3.51.0",
3
+ "version": "3.51.1",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/Tester.js CHANGED
@@ -383,7 +383,7 @@ class Tester {
383
383
 
384
384
  assert.deepEqual(
385
385
  state,
386
- deep ? deepExtend(state, object) : { ...state, ...object },
386
+ deep ? deepExtend({}, state, object) : { ...state, ...object },
387
387
  'Conversation state equals'
388
388
  );
389
389
  }