fix tests around line symbolizer

This commit is contained in:
Dane Springmeyer 2011-09-12 05:33:13 +00:00
parent ac3e43e5a4
commit 04900c4664
2 changed files with 1 additions and 2 deletions

View file

@ -35,7 +35,7 @@ struct line_symbolizer_pickle_suite : boost::python::pickle_suite
static boost::python::tuple
getinitargs(const line_symbolizer& l)
{
return boost::python::make_tuple(l.get_stroke(),l.get_rasterizer());
return boost::python::make_tuple(l.get_stroke());
}
};

View file

@ -17,7 +17,6 @@ def setup():
# LineSymbolizer initialization
def test_line_symbolizer_init():
s = mapnik2.LineSymbolizer()
eq_(s.stroke, mapnik2.Stroke())
eq_(s.rasterizer, mapnik2.line_rasterizer.FULL)
# ShieldSymbolizer initialization