pqb 0.7.1 → 0.7.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # pqb
2
2
 
3
+ ## 0.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 9b8b3d5: Prefix unique columns with sequences in test factory
8
+
3
9
  ## 0.7.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.esm.js CHANGED
@@ -1605,7 +1605,7 @@ const assignMethodsToClass = (klass, methods) => {
1605
1605
  writable: true,
1606
1606
  value(...args) {
1607
1607
  const cloned = cloneInstance(this);
1608
- return methods[name].call(cloned, args);
1608
+ return methods[name].apply(cloned, args);
1609
1609
  }
1610
1610
  });
1611
1611
  }