-
Notifications
You must be signed in to change notification settings - Fork 439
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
fix: Fix fluent setter in ExtractJobConfiguration #2328
Conversation
@@ -74,14 +74,15 @@ public function testFluentSetters() | |||
]; | |||
$this->expectedConfig['configuration']['extract'] = $extract | |||
+ $this->expectedConfig['configuration']['extract']; | |||
$this->config | |||
|
|||
$this->assertInstanceOf(ExtractJobConfiguration::class, $this->config |
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.
Would we be able to make this assertion separate from the usage of the setters please?
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.
done!
Codecov Report
@@ Coverage Diff @@
## master #2328 +/- ##
=========================================
Coverage ? 92.49%
Complexity ? 4479
=========================================
Files ? 311
Lines ? 13358
Branches ? 0
=========================================
Hits ? 12355
Misses ? 1003
Partials ? 0
Continue to review full report at Codecov.
|
Counterpart to #2327 and an extra assertion in the job configuration tests to make sure the last setter (the most likely to be newly added) returns as expected.