Skip to content

Commit

Permalink
Issue #432 - Actualy fix the test now. >_>
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Taylor committed Mar 5, 2015
1 parent 527318d commit e6de093
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/reporting.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ define([
.end()
.findByCssSelector('#browser').click()
.end()
.findByCssSelector('.u-formGroup').getAttribute('class')
.findByXpath('//*[@id="new-report"]/div/form/div[1]/div[2]/div[1]').getAttribute('class')
.then(function (className) {
assert.include(className, 'no-error');
assert.notInclude(className, 'has-error');
assert.include(className, 'has-error');
assert.notInclude(className, 'no-error');
})
.end()
.findByCssSelector('#url').type('sup')
Expand Down

0 comments on commit e6de093

Please sign in to comment.