@@ -152,55 +152,55 @@ sub t_not_allowed_after_multi {
152
152
exception {
153
153
$redis -> subscribe(' channel' );
154
154
},
155
- qr / Command "subscribe" not allowed after "multi" command\. / ,
155
+ qr / Command "subscribe" not allowed after "multi" command/ ,
156
156
" not allowed after multi; SUBSCRIBE" ,
157
157
);
158
158
159
159
like(
160
160
exception {
161
161
$redis -> unsubscribe(' channel' );
162
162
},
163
- qr / Command "unsubscribe" not allowed after "multi" command\. / ,
163
+ qr / Command "unsubscribe" not allowed after "multi" command/ ,
164
164
" not allowed after multi; UNSUBSCRIBE" ,
165
165
);
166
166
167
167
like(
168
168
exception {
169
169
$redis -> psubscribe(' pattern_*' );
170
170
},
171
- qr / Command "psubscribe" not allowed after "multi" command\. / ,
171
+ qr / Command "psubscribe" not allowed after "multi" command/ ,
172
172
" not allowed after multi; PSUBSCRIBE" ,
173
173
);
174
174
175
175
like(
176
176
exception {
177
177
$redis -> punsubscribe(' pattern_*' );
178
178
},
179
- qr / Command "punsubscribe" not allowed after "multi" command\. / ,
179
+ qr / Command "punsubscribe" not allowed after "multi" command/ ,
180
180
" not allowed after multi; PUNSUBSCRIBE" ,
181
181
);
182
182
183
183
like(
184
184
exception {
185
185
$redis -> info;
186
186
},
187
- qr / Command "info" not allowed after "multi" command\. / ,
187
+ qr / Command "info" not allowed after "multi" command/ ,
188
188
" not allowed after multi; INFO" ,
189
189
);
190
190
191
191
like(
192
192
exception {
193
193
$redis -> select(2);
194
194
},
195
- qr / Command "select" not allowed after "multi" command\. / ,
195
+ qr / Command "select" not allowed after "multi" command/ ,
196
196
" not allowed after multi; SELECT" ,
197
197
);
198
198
199
199
like(
200
200
exception {
201
201
$redis -> quit;
202
202
},
203
- qr / Command "quit" not allowed after "multi" command\. / ,
203
+ qr / Command "quit" not allowed after "multi" command/ ,
204
204
" not allowed after multi; QUIT" ,
205
205
);
206
206
0 commit comments