File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -803,7 +803,7 @@ jobs:
803803 }
804804
805805 public function test_plugin_class_exists() {
806- $this->assertTrue(class_exists('FreeGiftCouponsBulkGenerator '), 'Main plugin class should exist');
806+ $this->assertTrue(class_exists('FGCBG_Plugin '), 'Main plugin class should exist');
807807 }
808808
809809 public function test_wordpress_version_compatibility() {
@@ -831,11 +831,11 @@ jobs:
831831 }
832832
833833 public function test_plugin_instance() {
834- $instance = FreeGiftCouponsBulkGenerator ::get_instance();
835- $this->assertInstanceOf('FreeGiftCouponsBulkGenerator ', $instance, 'Plugin should return valid instance');
834+ $instance = FGCBG_Plugin ::get_instance();
835+ $this->assertInstanceOf('FGCBG_Plugin ', $instance, 'Plugin should return valid instance');
836836
837837 // Test singleton pattern
838- $instance2 = FreeGiftCouponsBulkGenerator ::get_instance();
838+ $instance2 = FGCBG_Plugin ::get_instance();
839839 $this->assertSame($instance, $instance2, 'Plugin should use singleton pattern');
840840 }
841841 }
You can’t perform that action at this time.
0 commit comments