Browse Source

Change range of added items in one of Collection class test case

Oskar Wrobel 9 years ago
parent
commit
f9599ae8ed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-utils/tests/collection.js

+ 1 - 1
packages/ckeditor5-utils/tests/collection.js

@@ -144,7 +144,7 @@ describe( 'Collection', () => {
 			() => {
 				// Add many items to collection
 				// to be sure that next item id will be higher than id already stored in uid cache
-				for ( let i = 0; i <= 100; i++ ) {
+				for ( let i = 0; i < 100; i++ ) {
 					collection.add( getItem( String( i ) ) );
 				}