We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e15ff84 commit b95a321Copy full SHA for b95a321
runtests.py
@@ -22,6 +22,7 @@
22
),
23
MIDDLEWARE_CLASSES=[],
24
ROOT_URLCONF='tests.urls',
25
+ STATIC_URL='/static/',
26
)
27
28
tests/test_rpc.py
@@ -56,7 +56,7 @@ def test_bad_action(self):
56
class RPCClientTest(LiveServerTestCase):
57
58
def setUp(self):
59
- self.rpc = client.RPCClient(self.live_server_url + '/rpc/')
+ self.rpc = client.RPCClient('%s%s' % (self.live_server_url, '/rpc/'))
60
61
def test_echo(self):
62
resp = self.rpc.echo(foo='bar')
0 commit comments