Skip to content

Commit

Permalink
fix a unit test + test version 0.9.5 build and uploaded.
Browse files Browse the repository at this point in the history
  • Loading branch information
srajan-kiyotaka committed Jun 20, 2024
1 parent ad18cbb commit e9cfccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='TraverseCraft',
version='0.8.5',
version='0.9.5',
author='Srajan Chourasia, Varun Patrikar',
author_email='[email protected], [email protected]',
maintainer='Srajan Chourasia, Varun Patrikar',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_graph_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_check_goal_state(self):
def test_set_start_state(self):
self.agent.setStartState("B")
self.assertEqual(self.agent._currentNode.id, "B")
self.assertEqual(self.agent._graphRoot.id, "B")
self.assertEqual(self.agent._startState.id, "B")
self.assertEqual(self.graphWorld.root.id, "B")

def test_set_start_state_invalid(self):
Expand Down

0 comments on commit e9cfccb

Please sign in to comment.