@@ -74,10 +74,10 @@ public function shouldAddDefaultConfigPassedInConstructorWhileCreatingGatewayCon
74
74
$ this ->assertIsArray ($ config );
75
75
76
76
$ this ->assertArrayHasKey ('foo ' , $ config );
77
- $ this ->assertEquals ('fooVal ' , $ config ['foo ' ]);
77
+ $ this ->assertSame ('fooVal ' , $ config ['foo ' ]);
78
78
79
79
$ this ->assertArrayHasKey ('bar ' , $ config );
80
- $ this ->assertEquals ('barVal ' , $ config ['bar ' ]);
80
+ $ this ->assertSame ('barVal ' , $ config ['bar ' ]);
81
81
}
82
82
83
83
/**
@@ -92,7 +92,7 @@ public function shouldConfigContainDefaultOptions()
92
92
$ this ->assertIsArray ($ config );
93
93
94
94
$ this ->assertArrayHasKey ('payum.default_options ' , $ config );
95
- $ this ->assertEquals (['client_id ' => '' , 'client_secret ' => '' , 'config_path ' => '' , 'config ' => []], $ config ['payum.default_options ' ]);
95
+ $ this ->assertSame (['client_id ' => '' , 'client_secret ' => '' , 'config_path ' => '' , 'config ' => []], $ config ['payum.default_options ' ]);
96
96
}
97
97
98
98
/**
@@ -107,10 +107,10 @@ public function shouldConfigContainFactoryNameAndTitle()
107
107
$ this ->assertIsArray ($ config );
108
108
109
109
$ this ->assertArrayHasKey ('payum.factory_name ' , $ config );
110
- $ this ->assertEquals ('paypal_rest ' , $ config ['payum.factory_name ' ]);
110
+ $ this ->assertSame ('paypal_rest ' , $ config ['payum.factory_name ' ]);
111
111
112
112
$ this ->assertArrayHasKey ('payum.factory_title ' , $ config );
113
- $ this ->assertEquals ('PayPal Rest ' , $ config ['payum.factory_title ' ]);
113
+ $ this ->assertSame ('PayPal Rest ' , $ config ['payum.factory_title ' ]);
114
114
}
115
115
116
116
/**
0 commit comments