mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Fix SCRIPT ERROR/ERROR/WARNING on test output
Also "fixing" some GDScript completion tests which where named wrongly.
This commit is contained in:
parent
134da37497
commit
5775d29ad8
33 changed files with 30 additions and 13 deletions
|
|
@ -235,9 +235,13 @@ TEST_CASE("[AHashMap] Insert, iterate and remove many elements") {
|
|||
TEST_CASE("[AHashMap] Insert, iterate and remove many strings") {
|
||||
const int elem_max = 432;
|
||||
AHashMap<String, String> map;
|
||||
|
||||
// To not print WARNING: Excessive collision count (NN), is the right hash function being used?
|
||||
ERR_PRINT_OFF;
|
||||
for (int i = 0; i < elem_max; i++) {
|
||||
map.insert(itos(i), itos(i));
|
||||
}
|
||||
ERR_PRINT_ON;
|
||||
|
||||
//insert order should have been kept
|
||||
int idx = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue