We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98884e5 commit 47e5273Copy full SHA for 47e5273
tests/unit-tests/GFMFI_GformGetFormFilterTest.php
@@ -21,6 +21,17 @@ public function tearDown() {
21
unset( $this->randomId );
22
}
23
24
+ /**
25
+ * @covers Gravity_Forms_Multiple_Form_Instances::gform_get_form_filter
26
+ */
27
+ public function testOriginalFormIdAddition() {
28
+ $input = ' gform_wrapper ';
29
+ $expected = ' gform_wrapper gform_wrapper_original_id_' . $this->form['id'] . ' ';
30
+ $actual = $this->gfmfi->gform_get_form_filter( $input, $this->form );
31
+
32
+ $this->assertSame( $expected, $actual );
33
+ }
34
35
/**
36
* @covers Gravity_Forms_Multiple_Form_Instances::gform_get_form_filter
37
*/
0 commit comments