Skip to content

Commit

Permalink
Merge pull request #927 from hashicorp/fix-ckdtf-typos
Browse files Browse the repository at this point in the history
chore: fix typos
  • Loading branch information
skorfmann committed Aug 26, 2021
2 parents 7e0593a + 979da8e commit 19b53ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cdktf/lib/terraform-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
import { makeUniqueId } from "./private/unique";
import { Manifest } from "./manifest";

const STACK_SYMBOL = Symbol.for("ckdtf/TerraformStack");
const STACK_SYMBOL = Symbol.for("cdktf/TerraformStack");
import { ValidateProviderPresence } from "./validations";

export interface TerraformStackMetadata {
Expand Down
2 changes: 1 addition & 1 deletion packages/cdktf/test/app.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ test("context can be passed through CDKTF_CONTEXT", () => {
expect(node.tryGetContext("key2")).toEqual("val2");
});

test("ckdtfVersion is accessible in context", () => {
test("cdktfVersion is accessible in context", () => {
const prog = new App();
const node = Node.of(prog);
expect(node.tryGetContext("cdktfVersion")).toEqual(version);
Expand Down

0 comments on commit 19b53ed

Please sign in to comment.