diff --git a/src/alert/test/alert.spec.js b/src/alert/test/alert.spec.js
index fa0b4fb619..271833309a 100644
--- a/src/alert/test/alert.spec.js
+++ b/src/alert/test/alert.spec.js
@@ -68,12 +68,12 @@ describe('alert', function () {
}
});
- it('should show close buttons and have the dismissable class', function () {
+ it('should show close buttons and have the dismissible class', function () {
var alerts = createAlerts();
for (var i = 0, n = alerts.length; i < n; i++) {
expect(findCloseButton(i).css('display')).not.toBe('none');
- expect(alerts.eq(i)).toHaveClass('alert-dismissable');
+ expect(alerts.eq(i)).toHaveClass('alert-dismissible');
}
});
@@ -91,11 +91,11 @@ describe('alert', function () {
expect(scope.removeAlert).toHaveBeenCalledWith(1);
});
- it('should not show close button and have the dismissable class if no close callback specified', function () {
+ it('should not show close button and have the dismissible class if no close callback specified', function () {
element = $compile('