Skip to content

Commit

Permalink
Minor fixes for mashup test
Browse files Browse the repository at this point in the history
Doesn't make it pass.
  • Loading branch information
remram44 committed Oct 9, 2014
1 parent 54ce311 commit e1f600f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions vistrails/gui/mashups/mashup_app.py
Expand Up @@ -32,6 +32,7 @@
## ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
##
###############################################################################
import os
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import pyqtSignal

Expand Down Expand Up @@ -614,8 +615,9 @@ class TestMashupApp(TestVisTrailsGUI):
def test_load_mashup(self):
import vistrails.api
import vistrails.core.system
filename = (vistrails.core.system.vistrails_root_directory() +
'/tests/resources/spx_loop.vt')
filename = os.path.join(
vistrails.core.system.vistrails_root_directory(),
'tests/resources/spx_loop.vt')
view = vistrails.api.open_vistrail_from_file(filename)
view.controller.flush_delayed_actions()
id = "d5026457-de6c-11e2-b074-3c07543dba07"
Expand Down
1 change: 1 addition & 0 deletions vistrails/gui/version_prop.py
Expand Up @@ -768,6 +768,7 @@ def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.versionNumber = None
self.controller = None
self.mtrail = None
#label = QtGui.QLabel("Mashups:")
self.mashupsButton = QtGui.QToolButton()
self.mashupsButton.setText("Mashups")
Expand Down

0 comments on commit e1f600f

Please sign in to comment.