Skip to content

Commit

Permalink
Fix failing test: $options will be ignored
Browse files Browse the repository at this point in the history
Perhaps test should not look at this, given it's ignored by the class?
  • Loading branch information
ocean committed Nov 12, 2020
1 parent 40025e5 commit 43f0b6f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -174,7 +174,7 @@ public function testFactoryCanSupplyAMixOfParameterTypes()
self::assertInstanceOf(TestAsset\ClassWithMixedConstructorParameters::class, $instance);

self::assertEquals($config, $instance->config);
self::assertEquals([], $instance->options);
self::assertEquals(null, $instance->options);
self::assertSame($sample, $instance->sample);
self::assertSame($validators, $instance->validators);
}
Expand Down

0 comments on commit 43f0b6f

Please sign in to comment.