Returns the expected cell index
(data)
| 143 | return data[1] |
| 144 | |
| 145 | def expectedCellId(data): |
| 146 | """ Returns the expected cell index """ |
| 147 | if not data[0] or data[1]<0: |
| 148 | return -1 |
| 149 | return data[2] |
| 150 | |
| 151 | |
| 152 | def compareExpectedAndActual(what,expected,actual): |