Browse Source

Fixed whitespace in new test in TestDelegates.

pull/234/head
triton 11 years ago
parent
commit
ac778cd593
  1. 6
      tests/Basic/Basic.Tests.cs

6
tests/Basic/Basic.Tests.cs

@ -176,9 +176,9 @@ public class BasicTests : GeneratorTestFixture @@ -176,9 +176,9 @@ public class BasicTests : GeneratorTestFixture
var delegates = new TestDelegates();
var doubleSum = delegates.A(2) + delegates.B(2);
Assert.AreEqual(8, doubleSum);
var stdcall = delegates.StdCall(i => i);
Assert.AreEqual(1, stdcall);
var stdcall = delegates.StdCall(i => i);
Assert.AreEqual(1, stdcall);
var cdecl = delegates.CDecl(i => i);
Assert.AreEqual(1, cdecl);

Loading…
Cancel
Save