Skip to content

Commit

Permalink
test: Add tag for sorting tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oboukli committed Sep 3, 2023
1 parent 249e0c4 commit 2569cfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/sorting/insertion_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "forfun/sorting/insertion.hpp"

TEST_CASE("Insertion sort") {
TEST_CASE("Insertion sort", "[sorting]") {
using forfun::sorting::insertion_sort;

// clang-format off
Expand Down
2 changes: 1 addition & 1 deletion test/sorting/quicksort_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "forfun/sorting/quicksort.hpp"

TEST_CASE("Quicksort sort") {
TEST_CASE("Quicksort sort", "[sorting]") {
using forfun::sorting::quicksort;

// clang-format off
Expand Down

0 comments on commit 2569cfd

Please sign in to comment.