Private
Public Access
1
0

first holoview chart

This commit is contained in:
Sander Roosendaal
2019-02-26 22:11:28 +01:00
parent 5ba0aee1dd
commit f538dc849e
13 changed files with 250 additions and 64 deletions

View File

@@ -259,7 +259,7 @@ class SessionLinkTest(TestCase):
plannedsessionstuple = []
for ps in pss:
sessiontpl = (ps.id,ps.__unicode__())
sessiontpl = (ps.id,ps.__str__())
plannedsessionstuple.append(sessiontpl)
plannedsessionstuple = tuple(plannedsessionstuple)
@@ -270,7 +270,7 @@ class SessionLinkTest(TestCase):
choices = []
for w in self.user_workouts:
wtpl = (w.id,w.__unicode__())
wtpl = (w.id,w.__str__())
choices.append(wtpl)
workoutdata['choices'] = tuple(choices)