mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	LibTest: Fix minor const-correctness issue in TestSuite::find_cases()
This commit is contained in:
		
							parent
							
								
									08a90455ac
								
							
						
					
					
						commit
						485958bb6f
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -94,7 +94,7 @@ int TestSuite::main(DeprecatedString const& suite_name, int argc, char** argv) | |||
| NonnullRefPtrVector<TestCase> TestSuite::find_cases(DeprecatedString const& search, bool find_tests, bool find_benchmarks) | ||||
| { | ||||
|     NonnullRefPtrVector<TestCase> matches; | ||||
|     for (auto const& t : m_cases) { | ||||
|     for (auto& t : m_cases) { | ||||
|         if (!search.is_empty() && !t.name().matches(search, CaseSensitivity::CaseInsensitive)) { | ||||
|             continue; | ||||
|         } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling