Skip to content

Commit 6cc0816

Browse files
committed
solve merge conflicts
2 parents 99154ff + e08ad86 commit 6cc0816

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/metrics/extension.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ describe("isExtensionRunning", () => {
77
afterEach(() => {
88
mock.restore();
99
});
10-
it("returns true when agent exists and responds", async () => {
10+
it("returns true when extension exists and responds", async () => {
1111
mock({
1212
"/opt/extensions/datadog-agent": Buffer.from([0]),
1313
});
1414
const ran = await isExtensionRunning();
1515
expect(ran).toBeTruthy();
1616
});
17-
it("returns false when agent doesn't exist", async () => {
17+
it("returns false when extension doesn't exist", async () => {
1818
mock({});
1919
const scope = nock(EXTENSION_URL).get("/lambda/hello").replyWithError("Unreachable");
2020
const ran = await isExtensionRunning();

0 commit comments

Comments
 (0)