Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8164


Ignore:
Timestamp:
06/29/12 16:40:11 (12 years ago)
Author:
ascheibe
Message:

#1863 fixed typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/PluginDependenciesTest.cs

    r7948 r8164  
    3535    private static Dictionary<string, string> pluginNames;
    3636    private static Dictionary<string, Assembly> pluginFilesToPluginLookup = new Dictionary<string, Assembly>();
    37     //private static Dictionary<string, string> pluginToPluginFilesLookup = new Dictionary<string, string>();
    3837
    3938    // Use ClassInitialize to run code before running the first test in the class
     
    9190
    9291          var referencedNonPluginAssemblies = pluginAssembly.GetReferencedAssemblies().Where(a => !IsPluginAssemblyName(a));
    93           bool found = (from referencedNonPluginAssemblie in referencedNonPluginAssemblies
    94                         select referencedNonPluginAssemblie.Name into assemblyName
     92          bool found = (from referencedNonPluginAssembly in referencedNonPluginAssemblies
     93                        select referencedNonPluginAssembly.Name into assemblyName
    9594                        where pluginFilesToPluginLookup.ContainsKey(assemblyName)
    9695                        select GetPluginFromAssembly(pluginFilesToPluginLookup[assemblyName]) into pluginType
Note: See TracChangeset for help on using the changeset viewer.