Skip to content

Commit

Permalink
typo in test_renderer_gdsrenderer_high_level
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkmiyamoto committed Jun 27, 2023
1 parent 9f8edd5 commit 4e95215
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qiskit_metal/tests/test_renderers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import unittest
from unittest.mock import MagicMock
import matplotlib.pyplot as _plt
import pandas as pd

from qiskit_metal import designs, Dict, draw
from qiskit_metal.renderers import setup_default
Expand Down Expand Up @@ -560,7 +561,7 @@ def test_renderer_gdsrenderer_high_level(self):
self.assertEqual(element_table_data['junction']['cell_name'],
'my_other_junction')

self.assertEqual(len(element_table_data['path'], 1))
self.assertEqual(len(element_table_data['path']), 1)
self.assertEqual(element_table_data['path']['make_airbridge'], False)

def test_renderer_gdsrenderer_update_units(self):
Expand Down

0 comments on commit 4e95215

Please sign in to comment.