@@ -3114,21 +3114,21 @@ static void test_crit_section(void)
3114
3114
ok (ret , "Failed to initialize critical section.\n" );
3115
3115
ok (cs .DebugInfo == (void * )(ULONG_PTR )- 1 , "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3116
3116
DeleteCriticalSection (& cs );
3117
- todo_wine ok (cs .DebugInfo == NULL, "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3117
+ ok (cs .DebugInfo == NULL , "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3118
3118
3119
3119
memset (& cs , 0 , sizeof (cs ));
3120
3120
ret = pInitializeCriticalSectionEx (& cs , 0 , CRITICAL_SECTION_NO_DEBUG_INFO );
3121
3121
ok (ret , "Failed to initialize critical section.\n" );
3122
3122
ok (cs .DebugInfo == (void * )(ULONG_PTR )- 1 , "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3123
3123
DeleteCriticalSection (& cs );
3124
- todo_wine ok (cs .DebugInfo == NULL, "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3124
+ ok (cs .DebugInfo == NULL , "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3125
3125
3126
3126
memset (& cs , 0 , sizeof (cs ));
3127
3127
ret = pInitializeCriticalSectionEx (& cs , 0 , 0 );
3128
3128
ok (ret , "Failed to initialize critical section.\n" );
3129
3129
ok (cs .DebugInfo == (void * )(ULONG_PTR )- 1 , "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3130
3130
DeleteCriticalSection (& cs );
3131
- todo_wine ok (cs .DebugInfo == NULL, "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3131
+ ok (cs .DebugInfo == NULL , "Unexpected debug info pointer %p.\n" , cs .DebugInfo );
3132
3132
3133
3133
memset (& cs , 0 , sizeof (cs ));
3134
3134
ret = pInitializeCriticalSectionEx (& cs , 0 , RTL_CRITICAL_SECTION_FLAG_FORCE_DEBUG_INFO );
0 commit comments