Skip to content

Commit 000afe7

Browse files
add tags to criteria and valid tags
1 parent 2fc684f commit 000afe7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

code/logic/common.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,20 +161,22 @@ void fossil_pizza_hash(const char *input, const char *output, uint8_t *hash_out)
161161
// Lookup tables for valid tags and criteria
162162
static const char* VALID_TAGS[] = {
163163
"fossil", // default tag
164-
"jellyfish", // Jellyfish AI tag
164+
"ai", // Jellyfish AI tag
165165
"network", // Network-related tests
166166
"database", // Database-related tests
167167
"ui", // User Interface tests
168168
"api", // API-related tests
169169
"critical", // Critical tests
170-
"non_critical", // Non-critical tests
170+
"media", // Media tests
171171
null // Sentinel to mark the end
172172
};
173173

174174
static const char* VALID_CRITERIA[] = {
175175
"name",
176176
"time",
177177
"result",
178+
"priority",
179+
"hash",
178180
null // Sentinel to mark the end
179181
};
180182

0 commit comments

Comments
 (0)