##// END OF EJS Templates
Fix config loader test for Python 3.
Thomas Kluyver -
Show More
@@ -48,7 +48,7 b' c = get_config()'
48 c.a=10
48 c.a=10
49 c.b=20
49 c.b=20
50 c.Foo.Bar.value=10
50 c.Foo.Bar.value=10
51 c.Foo.Bam.value=range(10)
51 c.Foo.Bam.value=list(range(10)) # list() is just so it's the same on Python 3
52 c.D.C.value='hi there'
52 c.D.C.value='hi there'
53 """
53 """
54
54
General Comments 0
You need to be logged in to leave comments. Login now