Skip to content

Commit

Permalink
TEZ-3583. Tez UI: UTs are flaky because of a dependency issue (sree)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreenaths committed Jan 19, 2017
1 parent e2a1a1f commit a5d141d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ ALL CHANGES:
TEZ-3496. Tez UI: Optimize display of all tasks table
TEZ-3571. Tez UI: Display a Total Timeline View for Hive Queries
TEZ-2712. Tez UI: Display the vertex description in the tooltip of vertex in DAG view UI
TEZ-3583. Tez UI: UTs are flaky because of a dependency issue

Release 0.8.5: Unreleased

Expand Down
2 changes: 1 addition & 1 deletion tez-ui/src/main/webapp/tests/unit/routes/dag/tasks-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ test('logCellClicked test', function(assert) {
// Download false
route.actions.logCellClicked.call(route, testID, false).then(function (virtualAnchorInstance) {
assert.equal(virtualAnchorInstance.href, testLogURL);
assert.notOk(virtualAnchorInstance.hasOwnProperty("download"));
assert.notOk(virtualAnchorInstance.download);
});

// Download true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ test('logCellClicked test', function(assert) {
// Download false
route.actions.logCellClicked.call(route, testID, false).then(function (virtualAnchorInstance) {
assert.equal(virtualAnchorInstance.href, testLogURL);
assert.notOk(virtualAnchorInstance.hasOwnProperty("download"));
assert.notOk(virtualAnchorInstance.download);
});

// Download true
Expand Down

0 comments on commit a5d141d

Please sign in to comment.