Skip to content

Commit

Permalink
Delete timeout exception assert
Browse files Browse the repository at this point in the history
  • Loading branch information
meshell committed Apr 10, 2018
1 parent bd73383 commit 39320ca
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/MaterialTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public function testUploadFile()
$result = $this->sdk->material->uploadMaterialImage($file);
$this->assertCount(1, $result);
} catch (\Exception $e) {
$this->assertTrue($e instanceof \RuntimeException);
}
}

Expand All @@ -57,7 +56,6 @@ public function testCreatePictureContent(array $content, MediaFile $file)
$result = $this->sdk->material->createPictureContent($content, $file);
$this->assertArrayHasKey('media_id', $result);
} catch (\Exception $e) {
$this->assertTrue($e instanceof \RuntimeException);
}
}

Expand Down

0 comments on commit 39320ca

Please sign in to comment.