@@ -137,7 +137,7 @@ struct EditorWhilstProcessingTest : public PluginTest
137137
138138 const std::vector<double >& sampleRates = ut.getOptions ().sampleRates ;
139139 const std::vector<int >& blockSizes = ut.getOptions ().blockSizes ;
140-
140+
141141 jassert (sampleRates.size ()>0 && blockSizes.size ()>0 );
142142 instance.prepareToPlay (sampleRates[0 ], blockSizes[0 ]);
143143
@@ -183,18 +183,18 @@ struct AudioProcessingTest : public PluginTest
183183 : PluginTest (" Audio processing" , 3 )
184184 {
185185 }
186-
186+
187187 static void runAudioProcessingTest (PluginTests& ut, AudioPluginInstance& instance,
188188 bool callReleaseResourcesBeforeSampleRateChange)
189189 {
190190 const bool isPluginInstrument = instance.getPluginDescription ().isInstrument ;
191-
191+
192192 const std::vector<double >& sampleRates = ut.getOptions ().sampleRates ;
193193 const std::vector<int >& blockSizes = ut.getOptions ().blockSizes ;
194-
194+
195195 jassert (sampleRates.size ()>0 && blockSizes.size ()>0 );
196196 instance.prepareToPlay (sampleRates[0 ], blockSizes[0 ]);
197-
197+
198198 const int numBlocks = 10 ;
199199 auto r = ut.getRandom ();
200200
@@ -203,12 +203,12 @@ struct AudioProcessingTest : public PluginTest
203203 for (auto bs : blockSizes)
204204 {
205205 ut.logMessage (String (" Testing with sample rate [SR] and block size [BS]" )
206- .replace (" SR" , String (sr,0 ) , false )
207- .replace (" BS" , String (bs), false ));
208-
206+ .replace (" SR" , String (sr, 0 ) , false )
207+ .replace (" BS" , String (bs), false ));
208+
209209 if (callReleaseResourcesBeforeSampleRateChange)
210210 instance.releaseResources ();
211-
211+
212212 instance.prepareToPlay (sr, bs);
213213
214214 const int numChannelsRequired = jmax (instance.getTotalNumInputChannels (), instance.getTotalNumOutputChannels ());
@@ -354,11 +354,11 @@ struct AutomationTest : public PluginTest
354354 {
355355 const bool subnormalsAreErrors = ut.getOptions ().strictnessLevel > 5 ;
356356 const bool isPluginInstrument = instance.getPluginDescription ().isInstrument ;
357-
357+
358358 const std::vector<double >& sampleRates = ut.getOptions ().sampleRates ;
359359 const std::vector<int >& blockSizes = ut.getOptions ().blockSizes ;
360-
361- jassert (sampleRates.size ()> 0 && blockSizes.size ()> 0 );
360+
361+ jassert (sampleRates.size () > 0 && blockSizes.size () > 0 );
362362 instance.prepareToPlay (sampleRates[0 ], blockSizes[0 ]);
363363
364364 auto r = ut.getRandom ();
@@ -369,9 +369,9 @@ struct AutomationTest : public PluginTest
369369 {
370370 const int subBlockSize = 32 ;
371371 ut.logMessage (String (" Testing with sample rate [SR] and block size [BS] and sub-block size [SB]" )
372- .replace (" SR" , String (sr,0 ), false )
373- .replace (" BS" , String (bs), false )
374- .replace (" SB" , String (subBlockSize), false ));
372+ .replace (" SR" , String (sr, 0 ), false )
373+ .replace (" BS" , String (bs), false )
374+ .replace (" SB" , String (subBlockSize), false ));
375375
376376 instance.releaseResources ();
377377 instance.prepareToPlay (sr, bs);
0 commit comments