Skip to content

Commit 759c3fe

Browse files
committed
Fix ICommMsg -> ICommMsgMsg
Signed-off-by: martinRenou <[email protected]>
1 parent 1327e52 commit 759c3fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

{{cookiecutter.github_project_name}}/tests/src/utils.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class MockComm {
2121
on_msg(fn: Function | null) {
2222
this._on_msg = fn;
2323
}
24-
_process_msg(msg: services.KernelMessage.ICommMsg) {
24+
_process_msg(msg: services.KernelMessage.ICommMsgMsg) {
2525
if (this._on_msg) {
2626
return this._on_msg(msg);
2727
} else {

0 commit comments

Comments
 (0)