summaryrefslogtreecommitdiffstats
path: root/test/Test.vala
diff options
context:
space:
mode:
Diffstat (limited to 'test/Test.vala')
-rw-r--r--test/Test.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Test.vala b/test/Test.vala
index 86907ea..85afc6a 100644
--- a/test/Test.vala
+++ b/test/Test.vala
@@ -3,7 +3,7 @@ namespace Eva {
public static int main(string[] args) {
MainLoop main = new MainLoop();
- Eva.PacketHandler handler = new Eva.PacketHandler(new UnixInputStream(3, true), new UnixOutputStream(4, true), 4);
+ PacketHandler handler = new PacketHandler(new UnixInputStream(3, true), new UnixOutputStream(4, true), 4);
handler.received_term.connect((term) => {stdout.printf("Received term %s\n", term.to_string()); handler.send(term); main.quit();});
handler.start();