We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd8aad commit 30716d3Copy full SHA for 30716d3
tests/DevicesTest.php
@@ -41,17 +41,6 @@ public function testGetAndListDevices(): void
41
$device = $seam->devices->get(name: $device_name);
42
$this->assertTrue($device->properties->manufacturer === $manufacturer);
43
44
- $seam->devices->delete(device_id: $device_id);
45
- try {
46
- $seam->devices->get(device_id: $device_id);
47
-
48
- $this->fail("Expected the device to be deleted");
49
- } catch (\Seam\HttpApiError $exception) {
50
- $this->assertTrue(
51
- str_contains($exception->getErrorCode(), "device_not_found")
52
- );
53
- }
54
55
$stable_device_providers = $seam->devices->list_device_providers(
56
provider_category: "stable"
57
);
0 commit comments