Skip to content

Commit

Permalink
Removed sp prefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Feb 29, 2024
1 parent 62e685f commit 462b3e0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ OPTION(BUILD_TESTS "sparrow test suite" OFF)
# =====

set(SPARROW_HEADERS
${SPARROW_INCLUDE_DIR}/sparrow/spbuffer.hpp
${SPARROW_INCLUDE_DIR}/sparrow/buffer.hpp
${SPARROW_INCLUDE_DIR}/sparrow/sparrow_version.hpp
)

Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: xparrow
name: sparrow
channels:
- conda-forge
dependencies:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ endif()

set(SPARROW_TESTS
main.cpp
test_spbuffer.cpp
test_buffer.cpp
)
set(test_target "test_sparrow_lib")
add_executable(${test_target} ${SPARROW_TESTS})
Expand Down
6 changes: 3 additions & 3 deletions test/test_spbuffer.cpp → test/test_buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

#include <numeric>

#include "sparrow/spbuffer.hpp"
#include "sparrow/buffer.hpp"

namespace sparrow
{
using buffer_test_type = spbuffer<uint8_t>;
using buffer_test_type = buffer<uint8_t>;

namespace
{
Expand All @@ -32,7 +32,7 @@ namespace sparrow
}
}

TEST_SUITE("spbuffer")
TEST_SUITE("buffer")
{
TEST_CASE("constructors")
{
Expand Down

0 comments on commit 462b3e0

Please sign in to comment.