Skip to content

Commit c402146

Browse files
Format code with prettier
Co-authored-by: John Grimes <johngrimes@users.noreply.github.com>
1 parent a590218 commit c402146

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tests/utils/sqlOnFhir.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ export function compareResults(
9595
if (expectedColumns && expectedColumns.length > 0) {
9696
// Use actualColumns from SQL metadata if provided, otherwise fall back to Object.keys
9797
const columnsToCheck =
98-
actualColumns || (actualResults.length > 0 ? Object.keys(actualResults[0]) : []);
98+
actualColumns ||
99+
(actualResults.length > 0 ? Object.keys(actualResults[0]) : []);
99100
if (!arraysEqual(columnsToCheck, expectedColumns)) {
100101
console.log("Column mismatch:");
101102
console.log(" Expected:", expectedColumns);

0 commit comments

Comments
 (0)