Skip to content

Commit b43913c

Browse files
committed
fix: part3 naming
1 parent a3e87cc commit b43913c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/3-ssdlc.livemd

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ A very easy way to prevent secrets being added to files is to access them via En
4747

4848
_Use `System.get_env/1` on line 2._
4949

50-
<!-- livebook:{"attrs":"eyJzb3VyY2UiOiIjIEVTQ1Q6MVxuc3VwZXJfc2VjcmV0X3Bhc3N3b3JkID0gXCJwQHNzdzByZFwiIn0","chunks":null,"kind":"Elixir.GradingClient.GradedCell","livebook_object":"smart_cell"} -->
50+
<!-- livebook:{"attrs":"eyJzb3VyY2UiOiIjIFNETEM6MVxuc3VwZXJfc2VjcmV0X3Bhc3N3b3JkID0gXCJwQHNzdzByZFwiIn0","chunks":null,"kind":"Elixir.GradingClient.GradedCell","livebook_object":"smart_cell"} -->
5151

5252
```elixir
5353
result = super_secret_password = "p@ssw0rd"
5454

5555
[module_id, question_id] =
56-
"# ESCT:1\nsuper_secret_password = \"p@ssw0rd\""
56+
"# SDLC:1\nsuper_secret_password = \"p@ssw0rd\""
5757
|> String.split("\n", parts: 2)
5858
|> hd()
5959
|> String.trim_leading("#")

modules/grading_client/priv/answers.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ owasp_questions = [
2424
}
2525
]
2626

27-
esct_questions = [
27+
sdlc_questions = [
2828
%{
2929
question_id: 1,
3030
answer: "some-secret-password",
@@ -47,6 +47,6 @@ graphql_questions = [
4747

4848
List.flatten([
4949
to_answers.(OWASP, owasp_questions),
50-
to_answers.(ESCT, esct_questions),
50+
to_answers.(SDLC, part3_questions),
5151
to_answers.(GRAPHQL, graphql_questions)
5252
])

0 commit comments

Comments
 (0)