Skip to content

Commit

Permalink
Fixes #137 - applied github comment
Browse files Browse the repository at this point in the history
  • Loading branch information
TebaleloS committed Feb 28, 2024
1 parent cc2acf0 commit b9e51ce
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ class GetPartitioningMeasuresTest extends DBTestSuite {
val results = queryResult.next()
assert(results.getInt("status").contains(41))
assert(results.getString("status_text").contains("The partitioning does not exist."))
assert(!queryResult.hasNext)
}
}

Expand Down Expand Up @@ -137,6 +138,7 @@ class GetPartitioningMeasuresTest extends DBTestSuite {
val results = queryResult.next()
assert(results.getInt("status").contains(16))
assert(results.getString("status_text").contains("No measures found for the given partitioning."))
assert(!queryResult.hasNext)
}
}

Expand Down

0 comments on commit b9e51ce

Please sign in to comment.