Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix project not building #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zmq/test/main.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

use "ponytest"
use "pony_test"

actor Main is TestList
new create(env: Env) => PonyTest(env, this)
Expand Down
2 changes: 1 addition & 1 deletion zmq/test/message_test.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

use "ponytest"
use "pony_test"
use zmq = ".."

class MessageTest is UnitTest
Expand Down
2 changes: 1 addition & 1 deletion zmq/test/socket_options_test.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

use "ponytest"
use "pony_test"
use zmq = ".."

class SocketOptionsTest is UnitTest
Expand Down
4 changes: 2 additions & 2 deletions zmq/test/socket_transport_tests.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

use "ponytest"
use "pony_test"
use "net"
use zmq = ".."
use zmtp = "../zmtp"
Expand Down Expand Up @@ -77,7 +77,7 @@ class SocketTransportTest is UnitTest
let ra = _SocketReactor; let a = zmq.Socket(zmq.PAIR, ra.notify())
let rb = _SocketReactor; let b = zmq.Socket(zmq.PAIR, rb.notify())

let net_auth = NetAuth(h.env.root as AmbientAuth)
let net_auth = NetAuth(h.env.root)
let ctx = zmq.Context

match _setup
Expand Down
2 changes: 1 addition & 1 deletion zmq/test/socket_type_tests.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

use "ponytest"
use "pony_test"
use "collections"
use zmq = ".."

Expand Down
2 changes: 1 addition & 1 deletion zmq/test/z85_test.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

use "ponytest"
use "pony_test"
use "../z85"

class Z85Test is UnitTest
Expand Down