Skip to content

Commit 028d43e

Browse files
Add missing default consistency checks for qtgmcEz* and coring params
The noise_reduction default consistency test was missing checks for qtgmcEzDenoise and qtgmcEzKeepGrain, and color_correction was missing the coring param check. These are the params we recently added to their respective schemas. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 520a0c5 commit 028d43e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

app/test/schema_converter_integration_test.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -982,6 +982,10 @@ void main() {
982982
model.mcTemporalRadius);
983983
expect(schema.parameters['mcTemporalProfile']!.defaultValue,
984984
model.mcTemporalProfile);
985+
expect(schema.parameters['qtgmcEzDenoise']!.defaultValue,
986+
model.qtgmcEzDenoise);
987+
expect(schema.parameters['qtgmcEzKeepGrain']!.defaultValue,
988+
model.qtgmcEzKeepGrain);
985989
});
986990

987991
test('chroma_fixes: schema defaults match model defaults', () {
@@ -1010,6 +1014,7 @@ void main() {
10101014
expect(schema.parameters['contrast']!.defaultValue, model.contrast);
10111015
expect(schema.parameters['saturation']!.defaultValue, model.saturation);
10121016
expect(schema.parameters['hue']!.defaultValue, model.hue);
1017+
expect(schema.parameters['coring']!.defaultValue, model.coring);
10131018
expect(schema.parameters['gamma']!.defaultValue, model.gamma);
10141019
expect(schema.parameters['applyLevels']!.defaultValue, model.applyLevels);
10151020
expect(schema.parameters['inputLow']!.defaultValue, model.inputLow);

0 commit comments

Comments
 (0)