From e32ff520287e3ce38e746058846482e938f8f952 Mon Sep 17 00:00:00 2001
From: Paul Czeresko <p.czeresko.3@gmail.com>
Date: Mon, 22 Jul 2019 09:29:28 -0400
Subject: [PATCH] Complete test3

---
 exercises/test3.rs | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/exercises/test3.rs b/exercises/test3.rs
index c8a5578..d394ea3 100644
--- a/exercises/test3.rs
+++ b/exercises/test3.rs
@@ -15,14 +15,14 @@ fn string(arg: String) {
 }
 
 fn main() {
-    ("blue");
-    ("red".to_string());
-    (String::from("hi"));
-    ("rust is fun!".to_owned());
-    ("nice weather".into());
-    (format!("Interpolation {}", "Station"));
-    (&String::from("abc")[0..1]);
-    ("  hello there ".trim());
-    ("Happy Monday!".to_string().replace("Mon", "Tues"));
-    ("mY sHiFt KeY iS sTiCkY".to_lowercase());
+    string_slice("blue");
+    string("red".to_string());
+    string(String::from("hi"));
+    string("rust is fun!".to_owned());
+    string_slice("nice weather".into());
+    string(format!("Interpolation {}", "Station"));
+    string_slice(&String::from("abc")[0..1]);
+    string_slice("  hello there ".trim());
+    string("Happy Monday!".to_string().replace("Mon", "Tues"));
+    string("mY sHiFt KeY iS sTiCkY".to_lowercase());
 }