Remove commented-out lines of code from test

This commit is contained in:
Ian Coleman
2018-01-16 10:37:14 +11:00
parent 423fb969c6
commit 2ef27fb80b

View File

@@ -2869,16 +2869,10 @@ it('LeftPads ethereum keys that are less than 32 bytes', function(done) {
driver.findElement(By.css('.phrase')) driver.findElement(By.css('.phrase'))
.sendKeys('scout sort custom elite radar rare vivid thing trophy gesture cover snake change narrow kite list nation sustain buffalo erode open balance system young'); .sendKeys('scout sort custom elite radar rare vivid thing trophy gesture cover snake change narrow kite list nation sustain buffalo erode open balance system young');
driver.sleep(generateDelay).then(function() { driver.sleep(generateDelay).then(function() {
driver.findElement(By.css(".address")) getFirstAddress(function(address) {
.getText() expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118");
.then(function(address) { done();
expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118"); });
done();
});
//getFirstAddress(function(address) {
// expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118");
// done();
//});
}); });
}); });