Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 0752fa50 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

corrected minor error in AssertHelper

parent e8060f96
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ namespace TUGraz.VectoCore.Tests.Utils
} catch (T ex) {
if (!string.IsNullOrEmpty(message)) {
Assert.AreEqual(message, ex.Message,
string.Format("Expected Exception message: {0}, but got message: {}", message, ex.Message));
string.Format("Expected Exception message: {0}, but got message: {1}", message, ex.Message));
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment