[tests] fix Graph import

This commit is contained in:
Yann Lanthony 2017-10-02 16:33:59 +02:00
parent 71f98267d2
commit d556547d0b

View file

@ -1,8 +1,8 @@
from meshroom import processGraph as pg from meshroom.processGraph.graph import Graph
def test_depth(): def test_depth():
graph = pg.Graph('Tests tasks depth') graph = Graph('Tests tasks depth')
tA = graph.addNewNode('Ls', input='/tmp') tA = graph.addNewNode('Ls', input='/tmp')
tB = graph.addNewNode('AppendText', inputText='echo B') tB = graph.addNewNode('AppendText', inputText='echo B')