We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1adcf89 commit fdbfb7cCopy full SHA for fdbfb7c
.travis.yml
@@ -22,4 +22,4 @@ install:
22
- python setup.py install
23
# Run test
24
script:
25
- - nosetests -v
+ - nosetests
test/test_dataset.py
@@ -370,7 +370,7 @@ def test_concat(self):
370
data0, data1 = deepcopy(split_data)
371
data1['foo'] = ('bar', np.random.randn(10))
372
Dataset.concat([data0, data1], 'dim1')
373
- with self.assertRaisesRegexp(ValueError, 'not equal across datasets'):
+ with self.assertRaisesRegexp(ValueError, 'unsafe to merge datasets'):
374
375
data1['dim2'] *= 2
376
0 commit comments