Skip to content

Commit 47dfbc0

Browse files
authored
try to make menu items more intuitive (#145)
1 parent f0b71c1 commit 47dfbc0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/Models/Badge.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ class Badge extends Model
5353
* @var array<string, string> $types
5454
*/
5555
public static array $types = [
56-
'esp32' => 'Espressif ESP32 binary',
57-
'python' => 'MicroPython egg',
58-
'ice40' => 'Lattice iCE40 bitstream',
56+
'esp32' => 'ESP32 native binaries >',
57+
'python' => 'Micropython eggs >',
58+
'ice40' => 'ICE40 FPGA bitstreams >',
5959
];
6060

6161
/**

tests/Feature/Mch20222Test.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ public function testMchDeviceTypes(): void
6464
$response->assertStatus(200)
6565
->assertExactJson([
6666
[
67-
'name' => 'Espressif ESP32 binary',
67+
'name' => 'ESP32 native binaries >',
6868
'slug' => 'esp32',
6969
],
7070
[
71-
'name' => 'MicroPython egg',
71+
'name' => 'Micropython eggs >',
7272
'slug' => 'python',
7373
],
7474
[
75-
'name' => 'Lattice iCE40 bitstream',
75+
'name' => 'ICE40 FPGA bitstreams >',
7676
'slug' => 'ice40',
7777
],
7878
]);

0 commit comments

Comments
 (0)