Ignore:
Timestamp:
Mar 31, 2019 6:04:26 AM (5 years ago)
Author:
GitHub <noreply@…>
Parents:
f994f188 (diff), d32a594 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Adam Washington <rprospero@…> (03/31/19 06:04:26)
git-committer:
GitHub <noreply@…> (03/31/19 06:04:26)
Message:

Merge d32a594acc82ad29555832f498167b51564c75f3 into f994f188e28dca36e7823b2deb3bf2bfc351c35c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Plotting/UnitTesting/PlotterTest.py

    r6edd344 r6c7ebb88  
    8181        """ Ensure that Sesans data is plotted in linear cooredinates""" 
    8282        data = Data1D(x=[1.0, 2.0, 3.0], 
    83                       y=[10.0, 11.0, 12.0], 
     83                      y=[-10.0, -11.0, -12.0], 
    8484                      dx=[0.1, 0.2, 0.3], 
    8585                      dy=[0.1, 0.2, 0.3]) 
     
    9797        self.assertEqual(self.plotter.ax.get_xscale(), 'linear') 
    9898        self.assertEqual(self.plotter.ax.get_yscale(), 'linear') 
     99        self.assertEqual(self.plotter.data.ytransform, "y") 
    99100        self.assertTrue(FigureCanvas.draw_idle.called) 
    100101 
Note: See TracChangeset for help on using the changeset viewer.