aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/gleam/atom_test.gleam6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/gleam/atom_test.gleam b/test/gleam/atom_test.gleam
index 4617489..228791d 100644
--- a/test/gleam/atom_test.gleam
+++ b/test/gleam/atom_test.gleam
@@ -2,11 +2,9 @@ import gleam/atom
import gleam/should
pub fn from_string_test() {
- "ok"
- |> atom.from_string
- |> should.be_ok
+ atom.create_from_string("this is an existing atom")
- "expect"
+ "this is an existing atom"
|> atom.from_string
|> should.be_ok