Fix my-greeting test to use h2 instead h1 (Closes #326)

This commit is contained in:
Chuck Horton
2015-08-24 07:47:52 -07:00
committed by Addy Osmani
parent 98a7e3c37f
commit d439e7dd4d

View File

@@ -42,7 +42,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
});
test('Welcome!', function() {
header = greeting.querySelector('h1');
header = greeting.querySelector('h2');
assert.equal(header.textContent, 'Welcome!');
});