Bug fixes in resources, ano/ne usage, etc., ver.2.5.271

This commit is contained in:
Milan Hanajik
2016-04-20 17:45:18 +02:00
parent d09921ee5b
commit a41d0517d2
4 changed files with 11 additions and 8 deletions
@@ -50,8 +50,8 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication
switch (i)
{
case 0: Activity = strValue; return;
case 1: SimultWithPrevious = strValue.Equals(Strings.yes); return;
case 2: SimultWithNext = strValue.Equals(Strings.yes); return;
case 1: SimultWithPrevious = strValue.ToLower().Equals(Strings.yes.ToLower()); return;
case 2: SimultWithNext = strValue.ToLower().Equals(Strings.yes.ToLower()); return;
default: return;
}
}