Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextExportInfoTest.cs =================================================================== diff -u -r7fb7b486bcbdd216ef834eaed0c89a1362e119e2 -rd3079ddcf65720b6722bf95759ea0ea48c5f124d --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextExportInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationContextExportInfoTest.cs) (revision 7fb7b486bcbdd216ef834eaed0c89a1362e119e2) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ExportInfos/WaveImpactAsphaltCoverWaveConditionsCalculationContextExportInfoTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationContextExportInfoTest.cs) (revision d3079ddcf65720b6722bf95759ea0ea48c5f124d) @@ -49,7 +49,7 @@ var context = new WaveImpactAsphaltCoverWaveConditionsCalculationContext(new WaveImpactAsphaltCoverWaveConditionsCalculation(), failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -66,7 +66,7 @@ public void FileFilter_Always_ReturnsFileFilter() { // Setup - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -90,7 +90,7 @@ var context = new WaveImpactAsphaltCoverWaveConditionsCalculationContext(new WaveImpactAsphaltCoverWaveConditionsCalculation(), failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -124,7 +124,7 @@ }, failureMechanism, assessmentSection); - using (WaveImpactAsphaltCoverPlugin plugin = new WaveImpactAsphaltCoverPlugin()) + using (var plugin = new WaveImpactAsphaltCoverPlugin()) { ExportInfo exportInfo = GetExportInfo(plugin); @@ -139,7 +139,7 @@ private static ExportInfo GetExportInfo(WaveImpactAsphaltCoverPlugin plugin) { - return Enumerable.First(plugin.GetExportInfos(), ei => ei.DataType == typeof(WaveImpactAsphaltCoverWaveConditionsCalculationContext)); + return plugin.GetExportInfos().First(ei => ei.DataType == typeof(WaveImpactAsphaltCoverWaveConditionsCalculationContext)); } } } \ No newline at end of file