Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
🎨 pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jun 6, 2023
1 parent e737f71 commit 0a3f956
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_simexec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ class DDSIMExecTest : public ::testing::TestWithParam<TestConfigurationDDSIM> {
void SetUp() override {
test = GetParam();

std::stringstream ss(test.initialCircuit);
auto qc = std::make_unique<qc::QuantumComputation>():
qc->import(ss, qc::Format::OpenQASM);
std::stringstream ss(test.initialCircuit);
auto qc = std::make_unique<qc::QuantumComputation>()
: qc->import(ss, qc::Format::OpenQASM);
std::cout << "Circuit:\n" << qc;

simulationTask = std::make_unique<SimulationTask>(std::move(qc));
Expand Down

0 comments on commit 0a3f956

Please sign in to comment.