From 76189917ec77fabbe80c1cc3d0ef729b319a5eea Mon Sep 17 00:00:00 2001 From: Anastasiya Dyachenko Date: Thu, 4 Feb 2021 00:53:08 +0300 Subject: [PATCH] Remove "web" dir from README.md Update due to current practice of directory structure --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 582a52d..a83f449 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ end # This makes sure your factory and any other modules in test/support are compiled # when in the test environment. -defp elixirc_paths(:test), do: ["lib", "web", "test/support"] -defp elixirc_paths(_), do: ["lib", "web"] +defp elixirc_paths(:test), do: ["lib", "test/support"] +defp elixirc_paths(_), do: ["lib"] ``` ## Overview @@ -446,7 +446,7 @@ change this line in `mix.exs`: ```elixir # Add the folder to the end of the list. In this case we're adding `test/factories`. -defp elixirc_paths(:test), do: ["lib", "web", "test/support", "test/factories"] +defp elixirc_paths(:test), do: ["lib", "test/support", "test/factories"] ``` ## Custom Strategies