fix tests around line symbolizer
This commit is contained in:
parent
ac3e43e5a4
commit
04900c4664
2 changed files with 1 additions and 2 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue