Skip to content

Commit

Permalink
fix: test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jbee committed Nov 30, 2023
1 parent 16ed1a4 commit a3b8d9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ summary_sql: >-
GROUP BY x.uid,x.name,x.cogs_name
)
SELECT COUNT(*),
100 * COUNT(*) / NULLIF( (SELECT COUNT(*) FROM categoryoption), 0) as percent
100 * COUNT(*) / NULLIF( (SELECT COUNT(*) FROM dataelementcategoryoption), 0) as percent
FROM cos_multiple_groups;
details_sql: >-
SELECT x.uid,x.name, x.cogs_name || ' :{'||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
FROM categories_categoryoptions))
SELECT COUNT(*) as value,
100.0 * COUNT(*) / NULLIF( (SELECT COUNT(*)
FROM categoryoption), 0 ) as percent
FROM dataelementcategoryoption), 0 ) as percent
FROM category_options_no_categories;
details_sql: >-
SELECT uid,name FROM dataelementcategoryoption
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ void testReadDataIntegrityYaml() {
.getIssues()
.get(0)
.getComment()
.startsWith("SELECT uid,name from category"));
.startsWith("SELECT uid,name from dataelementcategory"));
}

@Test
Expand Down

0 comments on commit a3b8d9d

Please sign in to comment.