@@ -32,7 +32,7 @@ public function testGetChoiceLoadersLoadsLoadedListOnFirstCall()
3232
3333 $ this ->assertSame (['RESULT ' ], $ list ->getChoices ());
3434 $ this ->assertSame (['RESULT ' ], $ list ->getChoices ());
35- $ this ->assertSame (1 , $ calls );
35+ $ this ->assertSame (2 , $ calls );
3636 }
3737
3838 public function testGetValuesLoadsLoadedListOnFirstCall ()
@@ -46,7 +46,7 @@ public function testGetValuesLoadsLoadedListOnFirstCall()
4646
4747 $ this ->assertSame (['RESULT ' ], $ list ->getValues ());
4848 $ this ->assertSame (['RESULT ' ], $ list ->getValues ());
49- $ this ->assertSame (1 , $ calls );
49+ $ this ->assertSame (2 , $ calls );
5050 }
5151
5252 public function testGetStructuredValuesLoadsLoadedListOnFirstCall ()
@@ -60,7 +60,7 @@ public function testGetStructuredValuesLoadsLoadedListOnFirstCall()
6060
6161 $ this ->assertSame (['RESULT ' ], $ list ->getStructuredValues ());
6262 $ this ->assertSame (['RESULT ' ], $ list ->getStructuredValues ());
63- $ this ->assertSame (1 , $ calls );
63+ $ this ->assertSame (2 , $ calls );
6464 }
6565
6666 public function testGetOriginalKeysLoadsLoadedListOnFirstCall ()
@@ -79,7 +79,7 @@ public function testGetOriginalKeysLoadsLoadedListOnFirstCall()
7979
8080 $ this ->assertSame (['foo ' => 'a ' , 'bar ' => 'b ' , 'baz ' => 'c ' ], $ list ->getOriginalKeys ());
8181 $ this ->assertSame (['foo ' => 'a ' , 'bar ' => 'b ' , 'baz ' => 'c ' ], $ list ->getOriginalKeys ());
82- $ this ->assertSame (3 , $ calls );
82+ $ this ->assertSame (6 , $ calls );
8383 }
8484
8585 public function testGetChoicesForValuesForwardsCallIfListNotLoaded ()
@@ -98,7 +98,7 @@ public function testGetChoicesForValuesForwardsCallIfListNotLoaded()
9898
9999 $ this ->assertSame (['foo ' , 'bar ' ], $ list ->getChoicesForValues (['a ' , 'b ' ]));
100100 $ this ->assertSame (['foo ' , 'bar ' ], $ list ->getChoicesForValues (['a ' , 'b ' ]));
101- $ this ->assertSame (3 , $ calls );
101+ $ this ->assertSame (6 , $ calls );
102102 }
103103
104104 public function testGetChoicesForValuesUsesLoadedList ()
0 commit comments