fixed failing test

This commit is contained in:
Dolan
2017-03-08 21:40:21 +00:00
parent 0e89606ec9
commit 279a5a93f1

View File

@ -10,11 +10,11 @@ class TabStop extends XmlComponent {
class Tab extends XmlComponent { class Tab extends XmlComponent {
constructor(value: string, position: number) { constructor(value: string, position: any) {
super("w:tab"); super("w:tab");
this.root.push(new Attributes({ this.root.push(new Attributes({
val: value, val: value,
pos: position.toString(), pos: position,
})); }));
} }
} }