Skip to content

Commit 5ead27e

Browse files
committed
minor fix in tests
1 parent e08185b commit 5ead27e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/mockidaapi.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
PLUGIN_DRAW = NotImplemented
77
PLUGIN_HIDE = NotImplemented
88
PLUGIN_KEEP = NotImplemented
9-
class plugin_t(object): NotImplemented
10-
class text_sink_t(object): NotImplemented
11-
class Choose2(object): NotImplemented
12-
def idadir(sub): NotImplemented
13-
def get_cmt(ea, off): NotImplemented
14-
def set_cmt(ea, off): NotImplemented
15-
def askyn_c(dflt, title): NotImplemented
16-
def get_input_file_path() : NotImplemented
17-
def get_segm_name(ea): NotImplemented
9+
class plugin_t(object): pass
10+
class text_sink_t(object): pass
11+
class Choose2(object): pass
12+
def idadir(sub): return NotImplemented
13+
def get_cmt(ea, off): return NotImplemented
14+
def set_cmt(ea, off): return NotImplemented
15+
def askyn_c(dflt, title): return NotImplemented
16+
def get_input_file_path() : return NotImplemented
17+
def get_segm_name(ea): return NotImplemented

0 commit comments

Comments
 (0)