Skip to content

Commit

Permalink
✅ update tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Drewniok committed Apr 4, 2024
1 parent a3eae3e commit 0d93aa7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/views/names_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ void test_copy_names_view()
CHECK( named_ntk.has_name( c ) );
CHECK( named_ntk.has_output_name( 0 ) );

names_view<Ntk> new_named_ntk = named_ntk;
names_view<Ntk> new_named_ntk{};
new_named_ntk = named_ntk;
CHECK( new_named_ntk.has_name( a ) );
CHECK( new_named_ntk.has_name( b ) );
CHECK( new_named_ntk.has_name( c ) );
Expand Down

0 comments on commit 0d93aa7

Please sign in to comment.