Skip to content

Commit

Permalink
update import path in existing test
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccarthy committed Dec 3, 2022
1 parent 38bd8da commit 4a1d536
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@

import unittest

from kfp.components import component_factory
from kfp.components import container_component_artifact_channel
from kfp.components import placeholders


class TestContainerComponentArtifactChannel(unittest.TestCase):

def test_correct_placeholder_and_attribute_error(self):
in_channel = component_factory.ContainerComponentArtifactChannel(
in_channel = container_component_artifact_channel.ContainerComponentArtifactChannel(
'input', 'my_dataset')
out_channel = component_factory.ContainerComponentArtifactChannel(
out_channel = container_component_artifact_channel.ContainerComponentArtifactChannel(
'output', 'my_result')
self.assertEqual(
in_channel.uri._to_string(),
Expand Down

0 comments on commit 4a1d536

Please sign in to comment.