-
Notifications
You must be signed in to change notification settings - Fork 538
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
Convert codebase to scala 2.13 #499
base: master
Are you sure you want to change the base?
Convert codebase to scala 2.13 #499
Conversation
@@ -81,26 +81,26 @@ class MetricsRepositoryMultipleResultsLoaderTest extends AnyWordSpec with Matche | |||
val analysisResultsAsJson = repository.load() | |||
.getSuccessMetricsAsJson() | |||
|
|||
val expected = | |||
s"""[{"entity":"Dataset","instance":"*","name":"Size","value":4.0, | |||
val expected = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scala 2.13 collections break the previous ordering of elements
|"instance":"att1,att2","name":"MutualInformation","value":0.5623351446188083}, | ||
|{"dataset_date":1507975810,"entity":"Dataset","region":"EU", | ||
|"instance":"*","name":"Size","value":4.0}, | ||
|"instance":"att1","name":"MaxLength","value":1.0}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scala 2.13 collections break the previous ordering of elements
"""[{"entity":"Column","instance":"att1","name":"Completeness","value":1.0}, | ||
|{"entity":"Multicolumn","instance":"att1,att2", | ||
|"name":"Uniqueness","value":0.25}]""" | ||
val expectedJson = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scala 2.13 collections break the previous ordering of elements
|{"entity":"Column","instance":"att1","name":"Histogram.ratio.b","value":0.25} | ||
|]""" | ||
.stripMargin.replaceAll("\n", "") | ||
val expectedJson = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scala 2.13 collections break the previous ordering of elements
@@ -79,12 +79,13 @@ class VerificationResultTest extends WordSpec with Matchers with SparkContextSpe | |||
val successMetricsResultsJson = VerificationResult.successMetricsAsJson(results) | |||
|
|||
val expectedJson = | |||
"""[{"entity":"Column","instance":"item","name":"Distinctness","value":1.0}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scala 2.13 collections break the previous ordering of elements
"""[{"entity":"Column","instance":"att1","name":"Completeness","value":1.0}, | ||
|{"entity":"Multicolumn","instance":"att1,att2", | ||
|"name":"Uniqueness","value":0.25}]""" | ||
"""[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
scala 2.13 collections break the previous ordering of elements
I am interested in this PR too :) |
Issue #, if available: None, but happy to create one if it helps.
Description of changes:
Is scala 2.13 on your roadmap? Are you considering either providing scala-2.13-only builds, or cross-compiling against 2.12 and 2.13?
If this is something you consider, then I hope this PR will help you.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.