Index: chrome/test/data/extensions/api_test/debugger_extension/background.js |
diff --git a/chrome/test/data/extensions/api_test/debugger_extension/background.js b/chrome/test/data/extensions/api_test/debugger_extension/background.js |
index 63101a85e3e860abd3fb67aab28d6c6f11c05d46..d1565863bea3a902062edb80b867a6ed760f8842 100644 |
--- a/chrome/test/data/extensions/api_test/debugger_extension/background.js |
+++ b/chrome/test/data/extensions/api_test/debugger_extension/background.js |
@@ -19,14 +19,14 @@ chrome.test.runTests([ |
function attachToMissing() { |
var missingDebuggee = {extensionId: "foo"}; |
chrome.debugger.attach(missingDebuggee, protocolVersion, |
- fail("No extension with given id " + |
+ fail("No background page with given id " + |
missingDebuggee.extensionId + ".")); |
}, |
function attachAgain() { |
chrome.debugger.attach(debuggee, protocolVersion, |
- fail("Another debugger is already attached to the extension with id: " + |
- debuggee.extensionId + ".")); |
+ fail("Another debugger is already attached " + |
+ "to the background page with id: " + debuggee.extensionId + ".")); |
}, |
function detach() { |
@@ -35,7 +35,7 @@ chrome.test.runTests([ |
function detachAgain() { |
chrome.debugger.detach(debuggee, |
- fail("Debugger is not attached to the extension with id: " + |
+ fail("Debugger is not attached to the background page with id: " + |
debuggee.extensionId + ".")); |
} |
]); |