From 1594aa469f48a9352a9b33174c8ca5ed53decf6b Mon Sep 17 00:00:00 2001 From: maxmattone Date: Fri, 14 Jul 2023 12:53:44 +0200 Subject: [PATCH] revert some stuff --- Pharo/PharoJs-Base-Bridge-Tests/PjLoadingTest.class.st | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Pharo/PharoJs-Base-Bridge-Tests/PjLoadingTest.class.st b/Pharo/PharoJs-Base-Bridge-Tests/PjLoadingTest.class.st index 0c45a220..e5f05b8e 100644 --- a/Pharo/PharoJs-Base-Bridge-Tests/PjLoadingTest.class.st +++ b/Pharo/PharoJs-Base-Bridge-Tests/PjLoadingTest.class.st @@ -10,7 +10,6 @@ Class { { #category : #tests } PjLoadingTest >> testEvalBlock [ PjLoadForTest reset. - self bridge loadClass: PjLoadForTest. self bridge evalBlock: [ window js_at: #valueForEvalTest put: 42 ]. self assert: (self bridge evalBlock: [ window js_at: #valueForEvalTest ]) @@ -48,8 +47,7 @@ PjLoadingTest >> testEvalBlock [ { #category : #tests } PjLoadingTest >> testLiteralGeneration [ - PjLoadForTest reset. - self bridge loadClass: PjLoadForTest. + self assertEquivalent: [ PjLoadForTest literal ]. self assertEquivalent: [ PjLoadForTest new literal ] ]