Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introducing primary data from SQL #98

Merged
merged 19 commits into from
Mar 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing test
  • Loading branch information
sebastian-peter committed Jan 18, 2022
commit ff30158497178d43377a9281eb46bd7d08022624
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class PrimaryServiceProxySpec
val exception = intercept[InvalidConfigParameterException](
PrimaryServiceProxy.checkConfig(maliciousConfig)
)
exception.getMessage shouldBe "Invalid configuration 'SqlParams(,,,,,,)' for a time series source.\nAvailable types:\n\tcsv"
exception.getMessage shouldBe "Invalid configuration 'SqlParams(,,,,,)' for a time series source.\nAvailable types:\n\tcsv"
}

"fails on invalid time pattern" in {
Expand Down Expand Up @@ -287,7 +287,7 @@ class PrimaryServiceProxySpec
fail("Building state data with missing config should fail")
case Failure(exception) =>
exception.getClass shouldBe classOf[IllegalArgumentException]
exception.getMessage shouldBe "Unsupported config for mapping source: 'SqlParams(,,,,,,)'"
exception.getMessage shouldBe "Unsupported config for mapping source: 'SqlParams(,,,,,)'"
}
}

Expand Down