test/TestStringFilter: enable another failing test on Windows
This commit is contained in:
		@@ -104,10 +104,10 @@ TEST_F(StringFilterTest, Normalize)
 | 
				
			|||||||
	const StringFilter f{"1①H", true, StringFilter::Position::FULL, false};
 | 
						const StringFilter f{"1①H", true, StringFilter::Position::FULL, false};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	EXPECT_TRUE(f.Match("1①H"));
 | 
						EXPECT_TRUE(f.Match("1①H"));
 | 
				
			||||||
	EXPECT_TRUE(f.Match("¹₁H"));
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef _WIN32
 | 
					#ifndef _WIN32
 | 
				
			||||||
	// fails with Windows CompareStringEx()
 | 
						// fails with Windows CompareStringEx()
 | 
				
			||||||
 | 
						EXPECT_TRUE(f.Match("¹₁H"));
 | 
				
			||||||
	EXPECT_TRUE(f.Match("①1ℌ"));
 | 
						EXPECT_TRUE(f.Match("①1ℌ"));
 | 
				
			||||||
	EXPECT_TRUE(f.Match("①1ℍ"));
 | 
						EXPECT_TRUE(f.Match("①1ℍ"));
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user