Skip to content

Commit

Permalink
better starting position
Browse files Browse the repository at this point in the history
  • Loading branch information
noskill committed Nov 21, 2024
1 parent 9019049 commit b55d07e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/vereya/test_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class TestAgent(BaseTest):

@classmethod
def setUpClass(self, *args, **kwargs):
start = (4.0, 69.0, 68)
start = (21.0, 135.0, 21)
mc, obs = init_mission(None, start_x=start[0], start_y=start[1], start_z=start[2], forceReset='true', seed='2')
self.mc = mc
self.rob = obs
Expand Down Expand Up @@ -84,8 +84,7 @@ def test_agent(self):
class TestAgentServer(TestAgent):
@classmethod
def setUpClass(self, *args, **kwargs):
start = (4.0, 69.0, 68)
mc, obs = init_mission(None, start_x=-4.5, start_y=110, start_z=-8.5, forceReset='false', forceReuse=True, seed='2', serverIp='127.0.0.1', serverPort=25565)
mc, obs = init_mission(None, start_x=-34, start_y=104, start_z=16, forceReset='false', forceReuse=True, seed='2', serverIp='127.0.0.1', serverPort=25565)
self.mc = mc
self.rob = obs
assert mc.safeStart()
Expand Down

0 comments on commit b55d07e

Please sign in to comment.