Skip to content

Commit

Permalink
fix test to support new unpickling
Browse files Browse the repository at this point in the history
  • Loading branch information
markotoplak committed Aug 25, 2023
1 parent 939cf29 commit dc6f2c4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Orange/widgets/visualize/tests/test_owvenndiagram.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import unittest
from unittest.mock import patch
from copy import deepcopy

import numpy as np

Expand Down Expand Up @@ -36,7 +35,7 @@ def _select_data(self):

def test_rows_id(self):
data = Table('zoo')
data1 = deepcopy(data)
data1 = data.copy()
with data1.unlocked():
data1[:, 1] = 1
self.widget.rowwise = True
Expand Down

0 comments on commit dc6f2c4

Please sign in to comment.