summaryrefslogtreecommitdiff
path: root/t/01_basic.t
diff options
context:
space:
mode:
Diffstat (limited to 't/01_basic.t')
-rw-r--r--t/01_basic.t8
1 files changed, 1 insertions, 7 deletions
diff --git a/t/01_basic.t b/t/01_basic.t
index 3154298..1ff9faf 100644
--- a/t/01_basic.t
+++ b/t/01_basic.t
@@ -31,12 +31,6 @@ my $err = $@;
is $err->http_code, 404, "... get 404";
my $auth_obj = FakeAPI->new();
-use Try::Tiny;
-use YAML::Syck;
-try {
- my $res = $auth_obj->auth_get_user(id => 1);
-}catch{
- warn Dump $_;
-};
+my $res = $auth_obj->auth_get_user(id => 1);
done_testing;