Skip to content

Commit 4632ef0

Browse files
committed
Tests fixed.
1 parent cd0a819 commit 4632ef0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CppAst.Tests/TestTypeAliases.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public void TestSimple()
1212
1313
using Type_bool = bool;
1414
15-
using Type_wchar = wchar_t ;
15+
using Type_wchar_t = wchar_t ;
1616
1717
using Type_char = char;
1818
using Type_unsigned_char = unsigned char;

src/CppAst.Tests/TestTypedefs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public void TestSimple()
1212
1313
typedef bool Type_bool;
1414
15-
typedef wchar_t Type_wchar;
15+
typedef wchar_t Type_wchar_t;
1616
1717
typedef char Type_char;
1818
typedef unsigned char Type_unsigned_char;

0 commit comments

Comments
 (0)