Skip to content

Commit 2d50653

Browse files
Merge pull request #5 from connectivecpp/develop
Merging develop to main
2 parents 79be3d0 + 09906da commit 2d50653

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build_run_unit_test_cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build_matrix:
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, windows-latest, macos-14]
15+
os: [ubuntu-latest, windows-latest, macos-15]
1616
# os: [ubuntu-latest, windows-latest]
1717
runs-on: ${{ matrix.os }}
1818
defaults:

test/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ target_compile_features ( shared_buffer_test PRIVATE cxx_std_20 )
1515
# add dependencies
1616
include ( ../cmake/download_cpm.cmake )
1717

18-
CPMAddPackage ( "gh:catchorg/Catch2@3.7.0" )
19-
CPMAddPackage ( "gh:connectivecpp/[email protected].3" )
18+
CPMAddPackage ( "gh:catchorg/Catch2@3.8.0" )
19+
CPMAddPackage ( "gh:connectivecpp/[email protected].4" )
2020

2121
# link dependencies
2222
target_link_libraries ( shared_buffer_test PRIVATE shared_buffer utility_rack Catch2::Catch2WithMain )

test/shared_buffer_test.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,8 @@ TEST_CASE ( "Mutable shared buffer append",
260260
REQUIRE (sb == ta);
261261
}
262262

263+
264+
263265
SECTION ( "Append mutable shared buffer" ) {
264266
sb.append(ta);
265267
REQUIRE (sb == ta);

0 commit comments

Comments
 (0)