Skip to content

Commit

Permalink
more fixes for model tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SoManyRayquazas committed Oct 24, 2024
1 parent 98b85e3 commit a91b581
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkmodel/tests/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ def test_create(self):
self.assertEqual(model.V_c, 1) #V_c
self.assertEqual(model.CL, 1) #CL
self.assertEqual(model.X, 1) #X
self.assertEqual(model.Q_p, []) #V_c
print(model.Q_p)
self.assertEqual(model.Q_p, []) #Q_p
self.assertEqual(model.V_p, []) #V_p

#test print function#
Expand Down

0 comments on commit a91b581

Please sign in to comment.