Code Duplication    Length = 15-16 lines in 2 locations

tests/acceptance/seller/BillCest.php 1 location

@@ 57-72 (lines=16) @@
54
        ]);
55
    }
56
57
    private function ensureICanSeeBulkBillSearchBox()
58
    {
59
        $this->index->containsBulkButtons([
60
            'Copy',
61
            'Update',
62
            'Delete',
63
        ]);
64
        $this->index->containsColumns([
65
            'Client',
66
            'Time',
67
            'Sum',
68
            'Balance',
69
            'Type',
70
            'Description',
71
        ]);
72
    }
73
}
74

tests/acceptance/seller/HeldPaymentsCest.php 1 location

@@ 52-66 (lines=15) @@
49
        ]);
50
    }
51
52
    private function ensureICanSeeBulkBillSearchBox()
53
    {
54
        $this->index->containsBulkButtons([
55
            'Approve',
56
            'Reject',
57
        ]);
58
        $this->index->containsColumns([
59
            'Client',
60
            'User comment',
61
            'TXN',
62
            'Description',
63
            'Amount',
64
            'Time',
65
        ]);
66
    }
67
}
68