Skip to content

Commit

Permalink
Fixed DataDrivenReadException message for ReadDataDriveFileCsv
Browse files Browse the repository at this point in the history
  • Loading branch information
raczeja committed Mar 12, 2018
1 parent 05f0eec commit dadec69
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,9 @@ public static IEnumerable<TestCaseData> ReadDataDriveFileCsv(string file, string
{
throw new DataDrivenReadException(
string.Format(
" Exception while reading Excel Data Driven file\n searched key '{0}' not found at sheet '{1}' \n for test {2} in file '{3}' at row {4}",
" Exception while reading Csv Data Driven file\n searched key '{0}' not found \n for test {1} in file '{2}' at row {3}",
e.Message,
testName,
testName,
file,
row));
}
Expand Down

0 comments on commit dadec69

Please sign in to comment.