Skip to content

Commit 7e71ed7

Browse files
author
Hugo Rialan
committed
Fix RowCondition assertion name
1 parent 214c45b commit 7e71ed7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

includes/row_condition_assertions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
const assertions = [];
2222

2323
const createRowConditionAssertion = (globalParams, schemaName, tableName, filter, conditionName, conditionQuery) => {
24-
const assertion = assert(`assert_${conditionName.replace(/-/g , "_")}${schemaName}_${tableName}`)
24+
const assertion = assert(`assert_${conditionName.replace(/-/g , "_")}_${schemaName}_${tableName}`)
2525
.database(globalParams.database)
2626
.schema(globalParams.schema)
2727
.description(`Assert that rows in ${schemaName}.${tableName} meet ${conditionName}`)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devoteamgcloud/dataform-assertions",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/devoteamgcloud/dataform-assertions.git"

0 commit comments

Comments
 (0)