Skip to content

Commit df28ddd

Browse files
Remove async suffix
1 parent 1fd59bb commit df28ddd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/TestRunners/MultiFileTestFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private static DirectoryInfo GetExpectedResultDirectory(string testFolderName, L
141141
{
142142
string languagePrefix = targetLanguage == Language.CS ? "VBToCS" : "CSToVB";
143143
string conversionDirectionFolderName = languagePrefix + "Results";
144-
var path = Path.Combine(MultiFileCharacterizationDir, conversionDirectionFolderName, testFolderName);
144+
var path = Path.Combine(MultiFileCharacterizationDir, conversionDirectionFolderName, testFolderName.Replace("Async", ""));
145145
return new DirectoryInfo(path);
146146
}
147147
}

0 commit comments

Comments
 (0)