##// END OF EJS Templates
Fixed test to reflect name change.
Jonathan Frederic -
Show More
@@ -2,13 +2,11 b' import io'
2 import nose.tools as nt
2 import nose.tools as nt
3 from nose.tools import nottest
3 from nose.tools import nottest
4
4
5 from converters.latex_transformer import remove_math_space
5 from converters.latex_transformer import rm_math_space
6
6
7 @nottest
7 @nottest
8 def test_space(input, reference):
8 def test_space(input, reference):
9 nt.assert_equal(remove_math_space(input),reference)
9 nt.assert_equal(rm_math_space(input),reference)
10
11
12
10
13 def test_evens():
11 def test_evens():
14 unchanged = [
12 unchanged = [
@@ -35,4 +33,4 b' def test_evens():'
35 yield test_space, k,v
33 yield test_space, k,v
36
34
37 for unch in unchanged :
35 for unch in unchanged :
38 yield test_space, unch, unch
36 yield test_space, unch, unch No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now