From 90f2f823db2c43120a76863708d68b3bacc4bd98 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Tue, 26 Jun 2018 16:18:19 +0100 Subject: [PATCH] tests: remove stray hard-coded interpreter. --- tests/id_allocation_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/id_allocation_test.py b/tests/id_allocation_test.py index e290c8a4..1e8d8d1e 100644 --- a/tests/id_allocation_test.py +++ b/tests/id_allocation_test.py @@ -15,7 +15,7 @@ def allocate_an_id(econtext): class SlaveTest(testlib.RouterMixin, testlib.TestCase): def test_slave_allocates_id(self): - context = self.router.local(python_path='/users/dmw/src/cpython/build/bin/python2') + context = self.router.local() # Master's allocator named the context 1. self.assertEquals(1, context.context_id)